can copy address from generated Cesium salt/password

This commit is contained in:
poka 2022-08-21 06:35:36 +02:00
parent ebc33e4f6c
commit 3abf2666ba
2 changed files with 24 additions and 8 deletions

View File

@ -10,6 +10,7 @@ import 'package:gecko/models/wallet_data.dart';
import 'package:gecko/providers/my_wallets.dart';
import 'package:gecko/providers/substrate_sdk.dart';
import 'package:gecko/providers/wallet_options.dart';
import 'package:gecko/providers/wallets_profiles.dart';
import 'package:gecko/screens/myWallets/unlocking_wallet.dart';
import 'package:gecko/screens/transaction_in_progress.dart';
import 'package:provider/provider.dart';
@ -171,14 +172,29 @@ class ImportG1v1 extends StatelessWidget {
),
),
const SizedBox(height: 20),
Text(
getShortPubkey(sub.g1V1NewAddress),
style: const TextStyle(
fontSize: 18,
color: Colors.black,
fontWeight: FontWeight.bold,
fontFamily: 'Monospace'),
GestureDetector(
key: const Key('copyPubkey'),
onTap: () {
Clipboard.setData(
ClipboardData(text: sub.g1V1NewAddress));
snackCopyKey(context);
},
child: Text(
getShortPubkey(sub.g1V1NewAddress),
style: const TextStyle(
fontSize: 20,
fontWeight: FontWeight.w600,
),
),
),
// Text(
// getShortPubkey(sub.g1V1NewAddress),
// style: const TextStyle(
// fontSize: 18,
// color: Colors.black,
// fontWeight: FontWeight.bold,
// fontFamily: 'Monospace'),
// ),
const SizedBox(height: 20),
Text(
'${balance['transferableBalance']} $currencyName',

View File

@ -5,7 +5,7 @@ description: Pay with G1.
# pub.dev using `pub publish`. This is preferred for private packages.
publish_to: 'none' # Remove this line if you wish to publish to pub.dev
version: 0.0.10+26
version: 0.0.10+27
environment:
sdk: '>=2.12.0 <3.0.0'