赞
踩
flutter 解决这种有两种办法 一种就是传统的嵌套 SingleChildScrollView 让页面可以上下滑动 如果不想改变页面结构
flutter 类入口的 Scaffold 的resizeToAvoidBottomInset: false 就可以
注意: 一个页面不管嵌套了多少类 只要用了Scaffold 都需要设置 resizeToAvoidBottomInset: false
注意: resizeToAvoidBottomInset: false属性会和flutter 官方的监听软键盘高度继承类 WidgetsBindingObserver 相互抵消 注意取舍和业务逻辑判断 https://blog.csdn.net/sinat_37255207/article/details/106167427
- @override
- Widget build(BuildContext context) {
- return Scaffold(
- resizeToAvoidBottomInset:false,
- appBar: CenterTitleAppBar(
- title: '会员',
- actions: <Widget>[
-
- ],
- ),
- body:MemberIndex(),
- );
- }
- }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。