gpt4 book ai didi

flutter 2.0 : nested MaterialApps -> problem with textInput inside showModalBottomSheet

转载 作者:行者123 更新时间:2023-12-03 17:09:22 29 4
gpt4 key购买 nike

在我的应用程序中,我使用 2 个 Material 应用程序来处理底部导航栏的导航。
由于我的应用程序非常复杂,这是最好的方法。
在一个屏幕上,当用户未登录时,将打开一个底部表单,用户可以在其中输入他的登录凭据。
bottomSheet 应出现在导航栏上方。
在下面的代码片段中,这就是我解决它的方法。

import 'package:flutter/material.dart';

void main() {
runApp(MyApp());
}

class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
primarySwatch: Colors.blue,
visualDensity: VisualDensity.adaptivePlatformDensity,
),
home: MyHomePage(),
);
}
}

final _navigationKey = GlobalKey<NavigatorState>();

class MyHomePage extends StatefulWidget {
@override
_MyHomePageState createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {
int currentIndex = 0;

@override
Widget build(BuildContext context) {
return Scaffold(
backgroundColor: Colors.white,
resizeToAvoidBottomInset: true,
body: MaterialApp(
navigatorKey: _navigationKey,
routes: {
'0': (context) => Home(),
'1': (context) => Scaffold(backgroundColor: Colors.yellow),
},
initialRoute: '0',
),
bottomNavigationBar: BottomNavigationBar(
currentIndex: currentIndex,
items: [
BottomNavigationBarItem(
icon: Icon(Icons.account_box_rounded),
label: 'account',
),
BottomNavigationBarItem(
icon: Icon(Icons.baby_changing_station),
label: 'stuff',
)
],
onTap: (int index) {
setState(() {
currentIndex = index;
});
Navigator.of(context).popUntil((route) => !(route is PopupRoute));
_navigationKey.currentState.pushReplacementNamed(index.toString());
},
),
);
}
}

class Home extends StatefulWidget {
@override
_HomeState createState() => _HomeState();
}

class _HomeState extends State<Home> {
@override
void initState() {
WidgetsBinding.instance.addPostFrameCallback((timeStamp) {
showModalBottomSheet(
context: context,
useRootNavigator: false,
isScrollControlled: true,
builder: (_) => Container(
child: Padding(
padding: const EdgeInsets.all(20.0),
child: TextField(),
),
),
);
});
super.initState();
}

@override
Widget build(BuildContext context) {
return Scaffold(
resizeToAvoidBottomInset: true,
backgroundColor: Colors.red,
);
}
}
现在问题来了:
在 flutter 1.22 中:
当用户点击 TextInput 时,键盘会打开,并且底部表格将其位置移动到键盘上方。
behavior in flutter 1
在 flutter 2.0 中:
当用户点击 TextInput 时,键盘会打开并且底部表格将其位置移出屏幕
behavior in flutter 2
有没有人有好的解决方法?
到目前为止我尝试了什么
我给了 bottomSheet 一个底部填充:
底部:MediaQuery.of(context).viewInsets.bottom),
但是并没有解决问题

最佳答案

我认为两个嵌套的 MaterialApps 的应用程序结构有点奇怪。
您描述的行为与我在设备上使用您的代码时得到的不完全相同。
但是就我而言,我通过设置 resizeToAvoidBottomInset: false 解决了这个问题。到 Scaffold元素。

关于 flutter 2.0 : nested MaterialApps -> problem with textInput inside showModalBottomSheet,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66611031/

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