showModalBottomSheet高度自适应
程序员文章站
2022-03-11 16:23:20
关于showModalBottomSheet高度自适应需求:1.showModalBottomSheet根据内容大小高度自适应2.超出最大高度(例如屏幕的三分之二)可以滑动3.键盘弹出时自适应 static showBottomPop(BuildContext context) { return showModalBottomSheet( context: context, isScrollControlled: true, //可滚动 解除showMod...
关于showModalBottomSheet高度自适应
需求:
1.showModalBottomSheet根据内容大小高度自适应
2.超出最大高度(例如屏幕的三分之二)可以滑动
3.键盘弹出时自适应
static showBottomPop(BuildContext context) {
return showModalBottomSheet(
context: context,
isScrollControlled: true, //可滚动 解除showModalBottomSheet最大显示屏幕一半的限制
shape: RoundedRectangleBorder(
//圆角
borderRadius: BorderRadius.vertical(top: Radius.circular(30.w)),
),
builder: (BuildContext context) {
return AnimatedPadding(
//showModalBottomSheet 键盘弹出时自适应
padding: MediaQuery.of(context).viewInsets, //边距(必要)
duration: const Duration(milliseconds: 100), //时常 (必要)
child: Container(
// height: 180,
constraints: BoxConstraints(
minHeight: 90.w, //设置最小高度(必要)
maxHeight: MediaQuery.of(context).size.height / 1.5, //设置最大高度(必要)
),
padding: EdgeInsets.only(top: 34.w, bottom: 48.w),
decoration: BoxDecoration(borderRadius: BorderRadius.vertical(top: Radius.circular(30.w)), color: Colors.white), //圆角
child: ListView(
shrinkWrap: true, //防止状态溢出 自适应大小
children: <Widget>[
Column(
mainAxisSize: MainAxisSize.min,
mainAxisAlignment: MainAxisAlignment.start,
crossAxisAlignment: CrossAxisAlignment.start,
children: <Widget>[
//widget组件
],
)
],
),
),
);
});
}
本文地址:https://blog.csdn.net/weixin_43841393/article/details/107935282
推荐阅读
-
PHP获取一段文本显示点阵宽度和高度的方法
-
网站云适配和自适应有什么区别?
-
html字符超出指定高度后省略显示_html/css_WEB-ITnose
-
div2 在 div3中, 希望div2的高度填满div3_html/css_WEB-ITnose
-
跨域下iframe自适应高度_html/css_WEB-ITnose
-
在bootstrap中如何实现table支持高度百分比
-
解析web响应式布局中iframe自适应的方法
-
创建一个高度为1的虚线
-
table 数据少时 ,tr高度变化_html/css_WEB-ITnose
-
Markdown+Bootstrap图片自适应属性_html/css_WEB-ITnose