gpt4 book ai didi

android - 当我单击编辑它时,我的文本字段隐藏在 BottomNavigationBar 的键盘后面

转载 作者:行者123 更新时间:2023-12-05 00:11:05 25 4
gpt4 key购买 nike

我是 Flutter 新手。我被困在一个地方,找不到确切的解决方案。

我有一个 BottomNavigationBar,其中有一个需要用户输入的文本字段。当我单击文本字段时,键盘覆盖了整个半个屏幕,文本字段隐藏在键盘后面,看不到。我想将文本字段移到键盘上方,以便为用户提供更好的 UI。

这是 BottomNavigationBar 代码:

Widget build(BuildContext context) {
return Container(
color: Colors.grey[200],
height: 70,
child: Row(
children: <Widget>[
SizedBox(
height: MediaQuery.of(context).viewInsets.bottom,
),
Container(
width: MediaQuery.of(context).size.width * 0.6,
color: Colors.transparent,
margin: EdgeInsets.fromLTRB(40, 0, 0, 0),
child: TextField( //this is the TextField
style: TextStyle(
fontSize: 30,
fontFamily: 'Karla',
),
decoration: InputDecoration.collapsed(
hintText: 'Experimez-vous...',
hintStyle: TextStyle(color: Colors.black),
),
),
),
],
),
);

这是主体(Scaffold)我从以下位置调用它:

return Scaffold(
body: Column(
children: <Widget>[
CloseButtonScreen(),
Container(
color: Colors.transparent,
child: HeaderContent(),
),
ContainerListItems(),
],
),
bottomNavigationBar: BottomNavBar(), //this is where Im calling my BottomNavigationBar from
floatingActionButton: FloatingActionBtn(),
floatingActionButtonLocation: FloatingActionButtonLocation.endDocked,
resizeToAvoidBottomPadding: false,
);

截图:

textfield 在 bottomnavigationbar 的键盘后面

体验 texfield

最佳答案

你可以像这样简单地实现它:

return Scaffold(
appBar: AppBar(title: Text('Your title')),
body: Column(
children: [
Expanded(
child: Text('Add things that will be shown in the body'),
),
//here comes your text field and will be shown at the bottom of the page
TextField(),
],
),
);

关于android - 当我单击编辑它时,我的文本字段隐藏在 BottomNavigationBar 的键盘后面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60967081/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com