mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-05 20:07:44 +00:00
28 lines
956 B
Dart
28 lines
956 B
Dart
/*
|
|
* 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
|
|
*
|
|
*/
|
|
|
|
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
|
import 'package:flutter_secure_storage/flutter_secure_storage.dart';
|
|
import 'package:stackwallet/providers/desktop/storage_crypto_handler_provider.dart';
|
|
import 'package:stackwallet/utilities/flutter_secure_storage_interface.dart';
|
|
import 'package:stackwallet/utilities/util.dart';
|
|
|
|
final secureStoreProvider = Provider<SecureStorageInterface>((ref) {
|
|
if (Util.isDesktop) {
|
|
final handler = ref.read(storageCryptoHandlerProvider).handler;
|
|
return SecureStorageWrapper(
|
|
store: DesktopSecureStore(handler), isDesktop: true);
|
|
} else {
|
|
return const SecureStorageWrapper(
|
|
store: FlutterSecureStorage(),
|
|
isDesktop: false,
|
|
);
|
|
}
|
|
});
|