mirror of
https://gitlab.com/nkming2/nc-photos.git
synced 2025-03-12 10:18:52 +01:00
Tweak style
This commit is contained in:
parent
27fdab786d
commit
e4a80a5c49
1 changed files with 8 additions and 2 deletions
|
@ -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),
|
||||||
|
),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
|
|
Loading…
Reference in a new issue