gecko/lib/screens/myWallets/change_pin.dart

121 lines
4.0 KiB
Dart
Raw Normal View History

2021-01-15 11:42:05 +01:00
import 'package:flutter/material.dart';
import 'package:durt/durt.dart';
2021-02-27 20:29:35 +01:00
import 'package:flutter/services.dart';
2021-11-08 23:12:25 +01:00
import 'package:gecko/globals.dart';
2022-02-18 02:19:08 +01:00
import 'package:gecko/models/stateful_wrapper.dart';
import 'package:gecko/providers/my_wallets.dart';
import 'package:gecko/providers/substrate_sdk.dart';
2021-01-15 11:42:05 +01:00
import 'dart:io';
import 'package:provider/provider.dart';
2021-01-15 11:42:05 +01:00
// ignore: must_be_immutable
class ChangePinScreen extends StatelessWidget with ChangeNotifier {
ChangePinScreen(
2021-12-23 12:36:09 +01:00
{Key? keyMyWallets,
required this.walletName,
required this.walletProvider})
2021-01-15 11:42:05 +01:00
: super(key: keyMyWallets);
2021-12-23 12:36:09 +01:00
final String? walletName;
2021-11-18 02:37:46 +01:00
final MyWalletsProvider walletProvider;
2021-12-23 12:36:09 +01:00
Directory? appPath;
2021-01-15 11:42:05 +01:00
TextEditingController newPin = TextEditingController();
2021-01-15 11:42:05 +01:00
@override
Widget build(BuildContext context) {
2021-02-27 20:29:35 +01:00
SystemChrome.setPreferredOrientations([DeviceOrientation.portraitUp]);
SubstrateSdk _sub = Provider.of<SubstrateSdk>(context, listen: false);
return WillPopScope(
2021-11-18 02:37:46 +01:00
onWillPop: () {
newPin.text = '';
2021-11-18 02:37:46 +01:00
return Future<bool>.value(true);
},
child: Scaffold(
resizeToAvoidBottomInset: false,
appBar: AppBar(
2021-11-21 06:36:12 +01:00
toolbarHeight: 60 * ratio,
leading: IconButton(
icon: const Icon(Icons.arrow_back, color: Colors.black),
onPressed: () {
newPin.text = '';
2021-11-21 06:36:12 +01:00
Navigator.of(context).pop();
}),
title: SizedBox(
height: 22,
2021-12-23 12:36:09 +01:00
child: Text(walletName!),
2021-11-21 06:36:12 +01:00
),
),
2021-11-18 02:37:46 +01:00
body: Center(
child: SafeArea(
child: Column(children: <Widget>[
StatefulWrapper(
2021-12-20 21:33:03 +01:00
onInit: () {
newPin.text = randomSecretCode(pinLength);
},
child: Container(),
),
2021-11-14 19:21:20 +01:00
const SizedBox(height: 80),
Text(
'Choisissez un code secret autogénéré :',
textAlign: TextAlign.center,
style: TextStyle(
fontSize: 17.0,
color: Colors.grey[600],
fontWeight: FontWeight.w400),
),
2021-11-14 19:21:20 +01:00
const SizedBox(height: 30),
Stack(
alignment: Alignment.centerRight,
children: <Widget>[
TextField(
2021-11-18 02:37:46 +01:00
enabled: false,
controller: newPin,
2021-11-14 19:21:20 +01:00
maxLines: 1,
textAlign: TextAlign.center,
decoration: const InputDecoration(),
style: const TextStyle(
fontSize: 30.0,
color: Colors.black,
fontWeight: FontWeight.bold)),
IconButton(
icon: const Icon(Icons.replay),
color: orangeC,
onPressed: () async {
newPin.text = randomSecretCode(pinLength);
2021-11-14 19:21:20 +01:00
},
),
],
),
2021-11-14 19:21:20 +01:00
const SizedBox(height: 30),
SizedBox(
width: 200,
height: 50,
child: ElevatedButton(
2021-11-18 02:37:46 +01:00
style: ElevatedButton.styleFrom(
elevation: 12,
primary: Colors.green[400], //smoothYellow, // background
onPrimary: Colors.black, // foreground
),
onPressed: () async {
final _chest = chestBox.get(configBox.get('currentChest'));
_sub.changePassword(
_chest!.address!, walletProvider.pinCode, newPin.text);
newPin.text = '';
walletProvider.pinCode = newPin.text;
2021-12-20 21:33:03 +01:00
},
2021-11-18 02:37:46 +01:00
child: const Text(
'Confirmer',
style: TextStyle(fontSize: 28),
),
),
)
2021-11-18 02:37:46 +01:00
]),
),
),
),
);
2021-01-15 11:42:05 +01:00
}
}