失败断言:第4429行POS 12:'!_ debuglocked':不是真的。同时显示Bottommodalsheet
我在显示底部底部表格的底部模态代码时遇到了此错误:
_showMoreOptions(BuildContext context) {
return showModalBottomSheet(context: context, builder: (context) {
return Container(
height: 250,
decoration: BoxDecoration(
color: colorWhite
),
child: SingleChildScrollView(
child: Container(
margin: EdgeInsets.symmetric(vertical: 10),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Text("Hello")
],
),
),
),
);
});
}
我正在调用此方法的按钮:
InkWell(
onTap: () {
print("call");
_showMoreOptions(context);
},
child: Icon(
MaterialIcons.subtitles,
color: colorFDEF50,
)),
如果您有任何解决方案,我会很感激:)
I'm getting this error while showing Bottom Modal Sheet code of Bottom Sheet method :
_showMoreOptions(BuildContext context) {
return showModalBottomSheet(context: context, builder: (context) {
return Container(
height: 250,
decoration: BoxDecoration(
color: colorWhite
),
child: SingleChildScrollView(
child: Container(
margin: EdgeInsets.symmetric(vertical: 10),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Text("Hello")
],
),
),
),
);
});
}
The button I'm calling this method :
InkWell(
onTap: () {
print("call");
_showMoreOptions(context);
},
child: Icon(
MaterialIcons.subtitles,
color: colorFDEF50,
)),
If you have any solution I'd be thankful :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论