gpt4 book ai didi

Android 后退按钮不适用于 Flutter 选项卡内的导航器

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

我需要在每个选项卡内有一个导航器,因此当我推送一个新的 Widget 时,选项卡栏会一直显示在屏幕上。代码运行良好,但 android 后退按钮正在关闭应用程序而不是运行 Navigator.pop()

import 'package:flutter/material.dart';

void main() {
runApp(const TabBarDemo());
}

class TabBarDemo extends StatelessWidget {
const TabBarDemo({Key? key}) : super(key: key);

@override
Widget build(BuildContext context) {
return MaterialApp(
home: DefaultTabController(
length: 1,
child: Scaffold(
bottomNavigationBar: const BottomAppBar(
color: Colors.black,
child: TabBar(
tabs: [
Tab(icon: Icon(Icons.directions_car)),
],
),
),
body: TabBarView(
children: [
Navigator(
onGenerateRoute: (settings) {
return MaterialPageRoute(
builder: (context) => IconButton(
icon: Icon(Icons.directions_car),
onPressed: () => Navigator.of(context).push(
MaterialPageRoute(
builder: (context) => newPage()))),
);
},
),
],
),
),
),
);
}
}

class newPage extends StatelessWidget {
const newPage({Key? key}) : super(key: key);

@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text("new page"),
),
body: Center(child: Icon(Icons.add)),
);
}
}

代码也可用here但是在 dartpad 上你不能测试 android 后退按钮。

最佳答案

首先你应该为你的导航器创建一个键

final GlobalKey<NavigatorState> homeNavigatorKey = GlobalKey();

然后将此键添加到您的导航器

Navigator(
key: homeNavigatorKey,

然后将您的 Navigator 包装在 WillPopScope 小部件中,并添加 onWillPop,如下所示

child: WillPopScope(
onWillPop: () async {
return !(await homeNavigatorKey.currentState!.maybePop());
},
child: Navigator(
key: homeNavigatorKey,

这将检查 navigatorKey 是否可以弹出一个路由,如果是,它只会弹出这条路由,如果不能,它会弹出自己,从而关闭应用程序

关于Android 后退按钮不适用于 Flutter 选项卡内的导航器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/70645881/

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