2023-05-26 21:21:16 +00:00
|
|
|
/*
|
|
|
|
* This file is part of Stack Wallet.
|
|
|
|
*
|
|
|
|
* Copyright (c) 2023 Cypher Stack
|
|
|
|
* All Rights Reserved.
|
|
|
|
* The code is distributed under GPLv3 license, see LICENSE file for details.
|
|
|
|
* Generated by Cypher Stack on 2023-05-26
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2023-04-20 15:32:50 +00:00
|
|
|
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
2023-05-09 16:24:11 +00:00
|
|
|
import 'package:stackwallet/models/isar/stack_theme.dart';
|
2023-05-09 21:57:40 +00:00
|
|
|
import 'package:stackwallet/themes/stack_colors.dart';
|
|
|
|
import 'package:stackwallet/themes/theme_service.dart';
|
2023-04-20 15:32:50 +00:00
|
|
|
|
|
|
|
final applicationThemesDirectoryPathProvider = StateProvider((ref) => "");
|
|
|
|
|
2023-04-24 14:36:12 +00:00
|
|
|
final colorProvider = StateProvider<StackColors>(
|
|
|
|
(ref) => StackColors.fromStackColorTheme(
|
|
|
|
ref.watch(themeProvider.state).state,
|
|
|
|
),
|
|
|
|
);
|
|
|
|
|
2023-05-09 21:57:40 +00:00
|
|
|
final themeProvider = StateProvider<StackTheme>(
|
|
|
|
(ref) => ref.watch(
|
|
|
|
pThemeService.select(
|
|
|
|
(value) => value.getTheme(
|
|
|
|
themeId: "light",
|
|
|
|
)!,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
);
|
2023-05-18 18:52:48 +00:00
|
|
|
|
|
|
|
final themeAssetsProvider = StateProvider<IThemeAssets>(
|
|
|
|
(ref) => ref.watch(
|
|
|
|
themeProvider.select(
|
|
|
|
(value) => value.assets,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
);
|