File tree 2 files changed +6
-0
lines changed
2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -62,6 +62,9 @@ class OnboardingSetup extends StatelessWidget {
62
62
child: ColorPicker (
63
63
pickerColor: Color (settingsStore.accentColor),
64
64
onColorChanged: (newColor) =>
65
+ // TODO: Update when new method arrives in stable:
66
+ // https://github.com/flutter/flutter/issues/160184#issuecomment-2560184639
67
+ // ignore: deprecated_member_use
65
68
settingsStore.accentColor = newColor.value,
66
69
enableAlpha: false ,
67
70
pickerAreaBorderRadius:
Original file line number Diff line number Diff line change @@ -54,6 +54,9 @@ class GeneralSettings extends StatelessWidget {
54
54
child: ColorPicker (
55
55
pickerColor: Color (settingsStore.accentColor),
56
56
onColorChanged: (newColor) =>
57
+ // TODO: Update when new method arrives in stable:
58
+ // https://github.com/flutter/flutter/issues/160184#issuecomment-2560184639
59
+ // ignore: deprecated_member_use
57
60
settingsStore.accentColor = newColor.value,
58
61
enableAlpha: false ,
59
62
pickerAreaBorderRadius:
You can’t perform that action at this time.
0 commit comments