1
0
Fork 0
mirror of https://gitlab.com/nkming2/nc-photos.git synced 2025-03-11 09:48:53 +01:00

Tweak style

This commit is contained in:
Ming Ming 2021-08-24 01:27:08 +08:00
parent 27fdab786d
commit e4a80a5c49

View file

@ -233,7 +233,10 @@ class _SettingsState extends State<Settings> {
Row(
mainAxisSize: MainAxisSize.max,
children: [
Icon(Icons.brightness_low),
Icon(
Icons.brightness_low,
color: AppTheme.getSecondaryTextColor(context),
),
Expanded(
child: StatefulSlider(
initialValue: brightness,
@ -249,7 +252,10 @@ class _SettingsState extends State<Settings> {
},
),
),
Icon(Icons.brightness_high),
Icon(
Icons.brightness_high,
color: AppTheme.getSecondaryTextColor(context),
),
],
),
],