1:使用AppBar
// brightness:關鍵代碼
appBar: AppBar(
title: Text('appbar',style: TextStyle(color: Colors.black),),
brightness: Brightness.light,
backgroundColor: Colors.white,
),
2:未使用AppBar
單頁設置更改狀態欄顏色
return AnnotatedRegion<SystemUiOverlayStyle>(
value: SystemUiOverlayStyle.dark,
child: Scaffold(
resizeToAvoidBottomInset: false,
body: Column(),
)
);