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