import 'dart:async'; import 'dart:io'; import 'package:flutter/material.dart'; import 'package:gecko/globals.dart'; import 'package:gecko/providers/home.dart'; import 'package:gecko/providers/my_wallets.dart'; import 'package:gecko/models/wallet_data.dart'; import 'package:gecko/providers/substrate_sdk.dart'; import 'package:gecko/providers/wallet_options.dart'; import 'package:gecko/providers/wallets_profiles.dart'; import 'package:provider/provider.dart'; import 'package:flutter/services.dart'; import 'package:qr_flutter/qr_flutter.dart'; class WalletOptions extends StatelessWidget { const WalletOptions({Key? keyMyWallets, required this.wallet}) : super(key: keyMyWallets); final WalletData wallet; @override Widget build(BuildContext context) { SystemChrome.setPreferredOrientations([DeviceOrientation.portraitUp]); WalletOptionsProvider _walletOptions = Provider.of(context, listen: false); WalletsProfilesProvider _historyProvider = Provider.of(context, listen: false); MyWalletsProvider _myWalletProvider = Provider.of(context); HomeProvider _homeProvider = Provider.of(context, listen: false); log.d(_walletOptions.address.text); final int _currentChest = _myWalletProvider.getCurrentChest()!; // final currentWallet = _myWalletProvider.getDefaultWallet(); // log.d(_walletOptions.getAddress(_currentChest, 3)); log.d("Wallet options: $_currentChest:${wallet.derivation}"); return WillPopScope( onWillPop: () { _walletOptions.isEditing = false; _walletOptions.isBalanceBlur = false; _myWalletProvider.rebuildWidget(); Navigator.pop(context); return Future.value(true); }, child: Scaffold( backgroundColor: backgroundColor, resizeToAvoidBottomInset: false, appBar: AppBar( toolbarHeight: 60 * ratio, elevation: 0, leading: IconButton( icon: const Icon(Icons.arrow_back, color: Colors.black), onPressed: () { _walletOptions.isEditing = false; _walletOptions.isBalanceBlur = false; _myWalletProvider.rebuildWidget(); Navigator.pop(context); }), title: SizedBox( height: 22, child: Consumer( builder: (context, walletProvider, _) { return Text(wallet.name!); }), ), ), bottomNavigationBar: _homeProvider.bottomAppBar(context), body: Builder( builder: (ctx) => SafeArea( child: Column(children: [ Container( height: isTall ? 5 : 0, color: yellowC, ), Consumer( builder: (context, walletProvider, _) { return Container( decoration: BoxDecoration( gradient: LinearGradient( begin: Alignment.topCenter, end: Alignment.bottomCenter, colors: [ yellowC, backgroundColor, ], )), child: Row( crossAxisAlignment: CrossAxisAlignment.start, mainAxisAlignment: MainAxisAlignment.spaceAround, children: [ const Spacer(flex: 1), avatar(walletProvider), const Spacer(flex: 1), Column(children: [ walletName(walletProvider, _walletOptions), SizedBox(height: isTall ? 5 : 0), // SizedBox(height: isTall ? 5 : 0), balance(context, walletProvider.address.text, 21), const SizedBox(width: 30), Column( crossAxisAlignment: CrossAxisAlignment.center, children: [ _walletOptions.idtyStatus( context, _walletOptions.address.text, isOwner: true), getCerts( context, walletProvider.address.text, 15), ]), SizedBox(height: 10 * ratio), ]), const Spacer(flex: 2), ]), ); }), Expanded( child: SingleChildScrollView( child: Column(children: [ QrImageWidget( data: _walletOptions.address.text, version: QrVersions.auto, size: isTall ? 300 : 270, ), SizedBox(height: 15 * ratio), Consumer( builder: (context, walletProvider, _) { return Column(children: [ pubkeyWidget(walletProvider, ctx), SizedBox(height: 10 * ratio), historyWidget( context, _historyProvider, walletProvider), SizedBox(height: 12 * ratio), setDefaultWalletWidget(context, walletProvider, _myWalletProvider, _walletOptions, _currentChest), SizedBox(height: 17 * ratio), if (!walletProvider.isDefaultWallet) deleteWallet(context, walletProvider, _myWalletProvider, _currentChest) ]); }), ]), ), ), ]), ), ), ), ); } Widget avatar(WalletOptionsProvider walletProvider) { return Stack( children: [ InkWell( onTap: () async { final _newPath = await (walletProvider.changeAvatar()); if (_newPath != '') { wallet.imageCustomPath = _newPath; walletBox.put(wallet.key, wallet); } walletProvider.reloadBuild(); }, child: wallet.imageCustomPath == null || wallet.imageCustomPath == '' ? Image.asset( 'assets/avatars/${wallet.imageDefaultPath}', width: 110, ) : Container( width: 120, height: 120, decoration: BoxDecoration( shape: BoxShape.circle, color: Colors.transparent, image: DecorationImage( fit: BoxFit.contain, image: FileImage( File(wallet.imageCustomPath!), ), ), ), ), ), Positioned( right: 0, top: 0, child: InkWell( onTap: () async { wallet.imageCustomPath = await (walletProvider.changeAvatar()); walletProvider.reloadBuild(); }, child: Image.asset( 'assets/walletOptions/camera.png', height: 40, ), ), ), ], ); } Widget walletName(WalletOptionsProvider walletProvider, WalletOptionsProvider _walletOptions) { WidgetsBinding.instance.addPostFrameCallback((_) { _walletOptions.nameController.text = wallet.name!; // _walletOptions.reloadBuild(); }); return SizedBox( width: 260, child: Stack(children: [ TextField( key: const Key('walletName'), autofocus: false, focusNode: walletProvider.walletNameFocus, enabled: walletProvider.isEditing, controller: walletProvider.nameController, minLines: 1, maxLines: 3, textAlign: TextAlign.center, decoration: const InputDecoration( border: InputBorder.none, focusedBorder: InputBorder.none, enabledBorder: InputBorder.none, disabledBorder: InputBorder.none, contentPadding: EdgeInsets.all(15.0), ), style: TextStyle( fontSize: isTall ? 27 : 23, color: Colors.black, fontWeight: FontWeight.w400, ), ), Positioned( right: 0, child: InkWell( key: const Key('renameWallet'), onTap: () async { // _isNewNameValid = walletProvider.editWalletName(wallet.id(), isCesium: false); await Future.delayed(const Duration(milliseconds: 30)); walletProvider.walletNameFocus.requestFocus(); }, child: ClipRRect( child: Image.asset( walletProvider.isEditing ? 'assets/walletOptions/android-checkmark.png' : 'assets/walletOptions/edit.png', width: 25, height: 25), ), ), ), ]), ); } Widget pubkeyWidget(WalletOptionsProvider walletProvider, BuildContext ctx) { final String shortPubkey = getShortPubkey(walletProvider.address.text); return GestureDetector( key: const Key('copyPubkey'), onTap: () { Clipboard.setData(ClipboardData(text: walletProvider.address.text)); snackCopyKey(ctx); }, child: SizedBox( height: 50, child: Row(children: [ const SizedBox(width: 30), Image.asset( 'assets/walletOptions/key.png', height: 45, ), const SizedBox(width: 20), Text(shortPubkey, style: const TextStyle( fontSize: 22, fontWeight: FontWeight.w800, fontFamily: 'Monospace', color: Colors.black)), const SizedBox(width: 15), SizedBox( height: 40, child: ElevatedButton( style: ElevatedButton.styleFrom( shape: RoundedRectangleBorder( borderRadius: BorderRadius.circular(8), ), elevation: 1, primary: orangeC, // background onPrimary: Colors.black, // foreground ), onPressed: () { Clipboard.setData( ClipboardData(text: walletProvider.address.text)); snackCopyKey(ctx); }, child: Row(children: [ Image.asset( 'assets/walletOptions/copy-white.png', height: 25, ), const SizedBox(width: 7), Text( 'Copier', style: TextStyle(fontSize: 15, color: Colors.grey[50]), ) ]), ), ), ]), ), ); } Widget historyWidget( BuildContext context, WalletsProfilesProvider _historyProvider, WalletOptionsProvider walletProvider) { return InkWell( key: const Key('displayHistory'), onTap: () { _historyProvider.nPage = 1; // Navigator.push( // context, // MaterialPageRoute(builder: (context) { // return HistoryScreen( // pubkey: walletProvider.address.text, // avatar: wallet.imageCustomPath == null // ? Image.asset( // 'assets/avatars/${wallet.imageDefaultPath}', // width: 110, // ) // : Image.asset( // wallet.imageCustomPath!, // width: 110, // )); // }), // ); }, child: SizedBox( height: 50, child: Row(children: [ const SizedBox(width: 30), Image.asset( 'assets/walletOptions/clock.png', height: 45, ), const SizedBox(width: 22), Text('Historique des transactions', style: TextStyle(fontSize: 20, color: Colors.grey[500])), ]), ), ); } Widget setDefaultWalletWidget( BuildContext context, WalletOptionsProvider walletProvider, MyWalletsProvider _myWalletProvider, WalletOptionsProvider _walletOptions, int _currentChest) { WalletData defaultWallet = _myWalletProvider.getDefaultWallet(); _walletOptions.isDefaultWallet = (defaultWallet.number == wallet.id()[1]); return InkWell( key: const Key('setDefaultWallet'), onTap: !walletProvider.isDefaultWallet ? () async { await setDefaultWallet(context, _currentChest); } : null, child: SizedBox( height: 50, child: Row(children: [ const SizedBox(width: 31), CircleAvatar( backgroundColor: Colors.grey[walletProvider.isDefaultWallet ? 300 : 500], child: Image.asset( 'assets/walletOptions/android-checkmark.png', height: 25, ), ), const SizedBox(width: 22), Text( walletProvider.isDefaultWallet ? 'Ce portefeuille est celui par defaut' : 'Définir comme portefeuille par défaut', style: TextStyle( fontSize: 20, color: walletProvider.isDefaultWallet ? Colors.grey[500] : Colors.black)), ]), ), ); } Future setDefaultWallet(BuildContext context, int _currentChest) async { SubstrateSdk _sub = Provider.of(context, listen: false); MyWalletsProvider _myWalletProvider = Provider.of(context, listen: false); // WalletData defaultWallet = _myWalletProvider.getDefaultWallet()!; // defaultWallet = wallet; await _sub.setCurrentWallet(wallet); _myWalletProvider.readAllWallets(_currentChest); _myWalletProvider.rebuildWidget(); } Widget deleteWallet( BuildContext context, WalletOptionsProvider walletProvider, MyWalletsProvider _myWalletProvider, int _currentChest) { return InkWell( key: const Key('deleteWallet'), onTap: !walletProvider.isDefaultWallet ? () async { await walletProvider.deleteWallet(context, wallet); WidgetsBinding.instance.addPostFrameCallback((_) { _myWalletProvider.listWallets = _myWalletProvider.readAllWallets(_currentChest); _myWalletProvider.rebuildWidget(); }); } : null, child: Row(children: [ const SizedBox(width: 30), Image.asset( 'assets/walletOptions/trash.png', height: 45, ), const SizedBox(width: 19), const Text('Supprimer ce portefeuille', style: TextStyle(fontSize: 20, color: Color(0xffD80000))), ]), ); } }