mirror of
https://gitlab.com/nkming2/nc-photos.git
synced 2025-02-02 14:56:20 +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(
|
||||
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),
|
||||
),
|
||||
],
|
||||
),
|
||||
],
|
||||
|
|
Loading…
Reference in a new issue