【发布时间】:2020-09-23 00:00:35
【问题描述】:
main.dart文件源代码???但我想在bottom_navbar.dart 中调用bottomNavigationBar(); 函数
import 'package:flutter/material.dart';
import 'bottom_navbar.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({Key key}) : super(key: key);
@override
Widget build(BuildContext context) {
return MaterialApp(
title: "BookKeep",
home: Scaffold(
appBar: AppBar(
backgroundColor: Color(0xFF212121),
title: Center(
child: Text("BookKeep"),
),
leading: GestureDetector(
onTap: (){},
child: Icon(
Icons.menu,
),
),
actions: <Widget>[
Padding(
padding: EdgeInsets.only(right: 20.0),
child: GestureDetector(
onTap: (){},
child: Icon(
Icons.search
),
),
),
],
),
),
);
}
}
bottom_navbar.dart文件????
import 'package:flutter/material.dart';
class bottomNavigationBar extends StatefulWidget {
@override
_bottomNavigationBarState createState() => _bottomNavigationBarState();
}
class _bottomNavigationBarState extends State<bottomNavigationBar> {
@override
Widget build(BuildContext context) {
return new Scaffold (
bottomNavigationBar: BottomNavigationBar(
items: [
BottomNavigationBarItem(
icon: new Icon(Icons.home),
title: new Text("Home")
),
BottomNavigationBarItem(
icon: new Icon(Icons.favorite,),
title: new Text("Favourites")
),
],
),
);
}
}
【问题讨论】:
-
您是否需要带有主页选项卡的 MyApp 类 UI 和收藏夹选项卡的其他类?对吗?
-
关于你得到的错误,MaterialApp 小部件的 home 参数只能有单状态小部件。 bottomNavigationBar() 或 Scaffold()。
标签: android flutter dart flutter-layout flutter-web