fix: made cursor grab and background color when hovering on Appearance Options Buttons (#3498)

This commit is contained in:
Nitin-Poojary 2023-09-22 22:33:18 +05:30 committed by GitHub
parent 1b966171c4
commit 593df96b10
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -30,8 +30,8 @@ class ColorSchemeSetting extends StatelessWidget {
label: LocaleKeys.settings_appearance_theme.tr(),
onResetRequested: context.read<AppearanceSettingsCubit>().resetTheme,
trailing: [
ColorSchemeUploadOverlayButton(bloc: bloc),
ColorSchemeUploadPopover(currentTheme: currentTheme, bloc: bloc),
ColorSchemeUploadOverlayButton(bloc: bloc),
],
);
}

View File

@ -106,6 +106,7 @@ class _ThemeValueDropDownState extends State<ThemeValueDropDown> {
widget.currentValue,
fontColor: Theme.of(context).colorScheme.onBackground,
fillColor: Colors.transparent,
onPressed: () {},
),
);
}