当前位置:网站首页>Record the fluent to solve the problem of a renderflex overflowed by 7.3 pixels on the bottom
Record the fluent to solve the problem of a renderflex overflowed by 7.3 pixels on the bottom
2022-07-28 22:08:00 【Mr, Wu】
Problem generation : Login screen , Click password input , Pop up keyboard , Bottom overflow occurs

Solution :
1、 Use ListView, This allows you to slide up and down , It can also avoid bottom overflow , Problem solving
class BcLogin extends StatelessWidget {
const BcLogin({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return Scaffold(
body: Container(
color: AppColorsUtils.primaryWhite,
child: ListView(
children: [
const BcLoginTop(),
const SizedBox(
height: 20.0,
),
Container(
padding: const EdgeInsets.only(left: 20.0, right: 20.0),
color: Colors.transparent,
child: AppLoginCenter(),
),
],
),
),
);
}
}2、 Use scrollable components SingleChildScrollView, Nest outside , Problem solving
class BcLogin extends StatelessWidget {
const BcLogin({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return Scaffold(
body: Container(
color: AppColorsUtils.primaryWhite,
height: MediaQuery.of(context).size.height,
child: SingleChildScrollView(
child: Column(
children: [
const BcLoginTop(),
const SizedBox(
height: 20.0,
),
Container(
padding: const EdgeInsets.only(left: 20.0, right: 20.0),
color: Colors.transparent,
child: AppLoginCenter(),
),
],
),
),
),
);
}
}
3、 To be added ...
边栏推荐
- 节省70%的显存,训练速度提高2倍!浙大&阿里提出在线卷积重新参数化OREPA,代码已开源!(CVPR 2022 )
- 【云原生之kubernetes】在kubernetes集群下的映射外部服务—Eendpoint
- Have you seen the management area decoupling architecture? Can help customers solve big problems
- display 各值的区别
- 【机器学习】朴素贝叶斯对文本分类--对人名国别分类
- System Analyst
- Matlab | basic knowledge summary I
- 开放式耳机哪个品牌好、性价比最高的开放式耳机排名
- 记录Flutter解决A RenderFlex overflowed by 7.3 pixels on the bottom溢出问题
- C语言编程规范学习笔记和总结
猜你喜欢

网格数据生成函数meshgrid

【NLP】生成词云

小程序开发需要什么技术

中国科学家首次用DNA构造卷积人工神经网络,可完成32类分子模式识别任务,或用于生物标志物信号分析和诊断

Apifox: satisfy all your fantasies about API

Part 8: creating camera classes

Knowledge description framework of foreign patent documents based on knowledge elements

使用百度EasyDL实现明厨亮灶厨师帽识别

HCIA综合实验(以华为eNSP为例)

Openeuler embedded sig | distributed soft bus
随机推荐
表单验证和级联下拉列表(多种实现)
Desai wisdom number - line chart (stacking area chart): ranking of deposits of different occupational groups in the proportion of monthly income in 2022
How to search images efficiently and accurately? Look at the lightweight visual pre training model
Research on weapon equipment attribute extraction based on attribute word completion
熊市下 DeFi 的未来趋势
[NLP] generate word cloud
学习 Kotlin - 扩展函数
How to design workflow engine gracefully (glory Collection Edition)
Bugku,Web:都过滤了
Mesh data generation function meshgrid
From Web3 to web2.5, is it backward or another way?
记录Flutter解决A RenderFlex overflowed by 7.3 pixels on the bottom溢出问题
Research on the recognition method of move function information of scientific paper abstract based on paragraph Bert CRF
字节一面:TCP 和 UDP 可以使用同一个端口吗?
Kubevera plug-in addons download address
中国科学家首次用DNA构造卷积人工神经网络,可完成32类分子模式识别任务,或用于生物标志物信号分析和诊断
ESP8266-Arduino编程实例-深度休眠与唤醒
系统分析师
Have you ever seen this kind of dynamic programming -- the stock problem of state machine dynamic programming (Part 2)
使用Mock技术帮助提升测试效率的小tips,你知道几个?