mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-06 09:13:48 +08:00
fix: 手动暗黑时播放页图标亮度错误
This commit is contained in:
@@ -474,9 +474,11 @@ class _VideoDetailPageState extends State<VideoDetailPage>
|
|||||||
elevation: 0,
|
elevation: 0,
|
||||||
toolbarHeight: 0,
|
toolbarHeight: 0,
|
||||||
systemOverlayStyle: SystemUiOverlayStyle(
|
systemOverlayStyle: SystemUiOverlayStyle(
|
||||||
statusBarIconBrightness: showStatusBarBackgroundColor
|
statusBarIconBrightness:
|
||||||
? null
|
Theme.of(context).brightness == Brightness.dark ||
|
||||||
: Brightness.light,
|
!showStatusBarBackgroundColor
|
||||||
|
? Brightness.light
|
||||||
|
: Brightness.dark,
|
||||||
systemNavigationBarColor: Colors.transparent),
|
systemNavigationBarColor: Colors.transparent),
|
||||||
),
|
),
|
||||||
body: Column(
|
body: Column(
|
||||||
@@ -1081,9 +1083,11 @@ class _VideoDetailPageState extends State<VideoDetailPage>
|
|||||||
elevation: 0,
|
elevation: 0,
|
||||||
toolbarHeight: 0,
|
toolbarHeight: 0,
|
||||||
systemOverlayStyle: SystemUiOverlayStyle(
|
systemOverlayStyle: SystemUiOverlayStyle(
|
||||||
statusBarIconBrightness: showStatusBarBackgroundColor
|
statusBarIconBrightness:
|
||||||
? null
|
Theme.of(context).brightness == Brightness.dark ||
|
||||||
: Brightness.light,
|
!showStatusBarBackgroundColor
|
||||||
|
? Brightness.light
|
||||||
|
: Brightness.dark,
|
||||||
systemNavigationBarColor: Colors.transparent),
|
systemNavigationBarColor: Colors.transparent),
|
||||||
),
|
),
|
||||||
body: Container(
|
body: Container(
|
||||||
@@ -1108,9 +1112,11 @@ class _VideoDetailPageState extends State<VideoDetailPage>
|
|||||||
elevation: 0,
|
elevation: 0,
|
||||||
toolbarHeight: 0,
|
toolbarHeight: 0,
|
||||||
systemOverlayStyle: SystemUiOverlayStyle(
|
systemOverlayStyle: SystemUiOverlayStyle(
|
||||||
statusBarIconBrightness: showStatusBarBackgroundColor
|
statusBarIconBrightness:
|
||||||
? null
|
Theme.of(context).brightness == Brightness.dark ||
|
||||||
: Brightness.light,
|
!showStatusBarBackgroundColor
|
||||||
|
? Brightness.light
|
||||||
|
: Brightness.dark,
|
||||||
systemNavigationBarColor: Colors.transparent),
|
systemNavigationBarColor: Colors.transparent),
|
||||||
),
|
),
|
||||||
body: Container(
|
body: Container(
|
||||||
|
|||||||
Reference in New Issue
Block a user