如何在Flutter中将底部栏更改为任何颜色我试过用
AnnotatedRegion<SystemUiOverlayStyle>( value: SystemUiOverlayStyle( systemNavigationBarDividerColor: Colors.red, systemNavigationBarColor: Colors.yellow ), child: child, );
但是没有用。
q5iwbnjs1#
使用安全区上面的脚手架和 Package 安全区与容器,然后尝试使用该容器的颜色。
class TestScreen extends StatelessWidget { const TestScreen({super.key}); @override Widget build(BuildContext context) { return Container( color: Colors.white, child: SafeArea( child: Scaffold( appBar: AppBar(), body: const Center( child: Text('Test Screen'), ), ), ), ); } }
1条答案
按热度按时间q5iwbnjs1#
使用安全区上面的脚手架和 Package 安全区与容器,然后尝试使用该容器的颜色。