我正在制作带有标签栏的简单应用。我需要将“底部导航栏”的背景颜色更改为蓝色。该应用程序的其余部分应为白色背景,导航栏应为蓝色背景。我应该怎么做? 在ThemeData中设置canvasColor无效。
这里是我的代码:
import 'package:flutter/material.dart';
void main() => runApp(MyApp());
class MyApp extends StatefulWidget {
State<StatefulWidget> createState(){
return MyAppState();
}
}
class MyAppState extends State<MyApp>{
int _selectedPage = 0;
final _pageOptions = [
Text('Item1'),
Text('Item2'),
Text('Item3')
];
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'sddsd',
theme: ThemeData(
primaryColor: Colors.blueAccent,
fontFamily: "Google Sans"
),
home: Scaffold(
appBar: AppBar(
title:Text("LQ2018"),
backgroundColor: Colors.blueAccent,
),
body: _pageOptions[_selectedPage],
bottomNavigationBar: BottomNavigationBar(
fixedColor: Colors.blueAccent,
currentIndex: _selectedPage,
onTap: (int index){
setState(() {
_selectedPage= index;
});
},
items: [
BottomNavigationBarItem(icon: Icon(Icons.supervised_user_circle), title: Text('Players')),
BottomNavigationBarItem(icon: Icon(Icons.whatshot), title: Text('Trending')),
BottomNavigationBarItem(icon: Icon(Icons.access_time), title: Text('Highlights'))
]
),
),
);
}
}
答案 0 :(得分:0)
将BottomNavigationBar包裹在主题中,并在主题数据中设置canvasColor。
@override
Widget build(BuildContext context) {
return Scaffold(
bottomNavigationBar: Theme(
data: Theme.of(context).copyWith(
canvasColor: Colors.blue,
textTheme: Theme.of(context)
.textTheme
.copyWith(caption: TextStyle(color: Colors.black54))),
child: BottomNavigationBar(
type: BottomNavigationBarType.fixed,
currentIndex: currentIndex,
fixedColor: Colors.green,
onTap: (value) {},
items: [
BottomNavigationBarItem(
icon: Icon(Icons.add),),
],
)),
);
}
答案 1 :(得分:0)
尝试
import 'package:flutter/material.dart';
void main() => runApp(MyApp());
class MyApp extends StatefulWidget {
State<StatefulWidget> createState(){
return MyAppState();
}
}
class MyAppState extends State<MyApp>{
int _selectedPage = 0;
final _pageOptions = [
Text('Item1'),
Text('Item2'),
Text('Item3')
];
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'sddsd',
theme: ThemeData(
primaryColor: Colors.blueAccent,
fontFamily: "Google Sans"
),
home: Scaffold(
appBar: AppBar(
title:Text("LQ2018"),
//backgroundColor: Colors.blueAccent,
),
body: _pageOptions[_selectedPage],
bottomNavigationBar: BottomNavigationBar(
//fixedColor: Colors.blueAccent,
type: BottomNavigationBarType.shifting,
currentIndex: _selectedPage,
onTap: (int index){
setState(() {
_selectedPage= index;
});
},
items: [
BottomNavigationBarItem(icon: Icon(Icons.supervised_user_circle), title: Text('Players'),backgroundColor: Colors.blueAccent),
BottomNavigationBarItem(icon: Icon(Icons.whatshot), title: Text('Trending'),backgroundColor: Colors.blueAccent),
BottomNavigationBarItem(icon: Icon(Icons.access_time), title: Text('Highlights'),backgroundColor: Colors.blueAccent)
]
),
),
);
}
}