Skip to content

Commit

Permalink
Fix dark theme dialog colors. (#569)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonas-Sander authored Apr 10, 2023
1 parent 34c3149 commit 2ba1394
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
1 change: 1 addition & 0 deletions app/lib/widgets/apple_sign_in_button.dart
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ class SignInWithAppleButton extends StatelessWidget {
child: Icon(
FontAwesomeIcons.apple,
size: 26,
color: Colors.white,
),
),
Padding(
Expand Down
11 changes: 6 additions & 5 deletions lib/sharezone_widgets/lib/src/theme/brightness/dark_theme.dart
Original file line number Diff line number Diff line change
Expand Up @@ -42,14 +42,15 @@ final darkTheme = ThemeData(
.copyWith(headlineMedium: const TextStyle(color: Colors.white)),
pageTransitionsTheme: _pageTransitionsTheme,
snackBarTheme: _snackBarTheme.copyWith(
contentTextStyle: const TextStyle(
color: Colors.white,
),
contentTextStyle: const TextStyle(color: Colors.white),
backgroundColor: Colors.black,
),
bottomSheetTheme: _bottomSheetTheme,
dialogTheme: _dialogTheme,
colorScheme: ColorScheme.fromSwatch()
.copyWith(secondary: _accentColor, brightness: Brightness.dark),
colorScheme: ColorScheme.fromSeed(
seedColor: primaryColor,
brightness: Brightness.dark,
),
tabBarTheme: const TabBarTheme(labelColor: Colors.white),
checkboxTheme: CheckboxThemeData(
fillColor:
Expand Down

0 comments on commit 2ba1394

Please sign in to comment.