flutter 简直封装的太好了
第一种方法 通过AppBar
AppBar(
brightness: Brightness.light,
xxxx
)
第二种方法 通过AnnotatedRegion组件
AnnotatedRegion<SystemUiOverlayStyle>(
value: SystemUiOverlayStyle.dark,
child:Container(),
);
第三种
SystemChrome.setSystemUIOverlayStyle(SystemUiOverlayStyle.dark);
//有白色和黑色主题
网友评论