ocean breeze added

This commit is contained in:
ryleedavis 2022-11-17 20:05:29 -07:00
parent 2137cffd84
commit 02dadd432c

View file

@ -57,6 +57,7 @@ import 'package:stackwallet/utilities/stack_file_system.dart';
import 'package:stackwallet/utilities/theme/color_theme.dart'; import 'package:stackwallet/utilities/theme/color_theme.dart';
import 'package:stackwallet/utilities/theme/dark_colors.dart'; import 'package:stackwallet/utilities/theme/dark_colors.dart';
import 'package:stackwallet/utilities/theme/light_colors.dart'; import 'package:stackwallet/utilities/theme/light_colors.dart';
import 'package:stackwallet/utilities/theme/ocean_breeze_colors.dart';
import 'package:stackwallet/utilities/theme/stack_colors.dart'; import 'package:stackwallet/utilities/theme/stack_colors.dart';
import 'package:stackwallet/utilities/util.dart'; import 'package:stackwallet/utilities/util.dart';
import 'package:window_size/window_size.dart'; import 'package:window_size/window_size.dart';
@ -317,8 +318,11 @@ class _MaterialAppWithThemeState extends ConsumerState<MaterialAppWithTheme>
WidgetsBinding.instance.addPostFrameCallback((_) async { WidgetsBinding.instance.addPostFrameCallback((_) async {
ref.read(colorThemeProvider.state).state = ref.read(colorThemeProvider.state).state =
StackColors.fromStackColorTheme( StackColors.fromStackColorTheme(themeType == ThemeType.dark
themeType == ThemeType.dark ? DarkColors() : LightColors()); ? DarkColors()
: (themeType == ThemeType.light
? LightColors()
: OceanBreezeColors()));
if (Platform.isAndroid) { if (Platform.isAndroid) {
// fetch open file if it exists // fetch open file if it exists