mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-06 12:27:41 +00:00
1449814e35
# Conflicts: # lib/pages/pinpad_views/create_pin_view.dart # lib/widgets/custom_pin_put/custom_pin_put_state.dart
152 lines
4.9 KiB
Dart
152 lines
4.9 KiB
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/material.dart';
|
|
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
|
import 'package:flutter_svg/svg.dart';
|
|
import 'package:stackwallet/themes/stack_colors.dart';
|
|
import 'package:stackwallet/utilities/amount/amount.dart';
|
|
import 'package:stackwallet/utilities/amount/amount_formatter.dart';
|
|
import 'package:stackwallet/utilities/assets.dart';
|
|
import 'package:stackwallet/utilities/enums/coin_enum.dart';
|
|
import 'package:stackwallet/utilities/text_styles.dart';
|
|
import 'package:stackwallet/utilities/util.dart';
|
|
import 'package:stackwallet/widgets/desktop/desktop_dialog.dart';
|
|
import 'package:stackwallet/widgets/desktop/desktop_dialog_close_button.dart';
|
|
import 'package:stackwallet/widgets/desktop/primary_button.dart';
|
|
import 'package:stackwallet/widgets/desktop/secondary_button.dart';
|
|
import 'package:stackwallet/widgets/stack_dialog.dart';
|
|
|
|
class ConfirmPaynymConnectDialog extends ConsumerWidget {
|
|
const ConfirmPaynymConnectDialog({
|
|
Key? key,
|
|
required this.nymName,
|
|
required this.locale,
|
|
required this.onConfirmPressed,
|
|
required this.amount,
|
|
required this.coin,
|
|
}) : super(key: key);
|
|
|
|
final String nymName;
|
|
final String locale;
|
|
final VoidCallback onConfirmPressed;
|
|
final Amount amount;
|
|
final Coin coin;
|
|
|
|
String get title => "Connect to $nymName";
|
|
|
|
String message(String amountString) => "A one-time connection fee of "
|
|
"$amountString "
|
|
"will be charged to connect to this PayNym.\n\nThis fee "
|
|
"covers the cost of creating a one-time transaction to create a "
|
|
"record on the blockchain. This keeps PayNyms decentralized.";
|
|
|
|
@override
|
|
Widget build(BuildContext context, WidgetRef ref) {
|
|
if (Util.isDesktop) {
|
|
return DesktopDialog(
|
|
maxHeight: double.infinity,
|
|
child: Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
Row(
|
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
|
children: [
|
|
Padding(
|
|
padding: const EdgeInsets.only(left: 40),
|
|
child: SvgPicture.asset(
|
|
Assets.svg.userPlus,
|
|
color: Theme.of(context).extension<StackColors>()!.textDark,
|
|
width: 32,
|
|
height: 32,
|
|
),
|
|
),
|
|
const DesktopDialogCloseButton(),
|
|
],
|
|
),
|
|
Padding(
|
|
padding: const EdgeInsets.only(
|
|
left: 40,
|
|
bottom: 32,
|
|
right: 40,
|
|
),
|
|
child: Text(
|
|
title,
|
|
style: STextStyles.desktopH3(context),
|
|
),
|
|
),
|
|
Padding(
|
|
padding: const EdgeInsets.only(
|
|
left: 40,
|
|
right: 40,
|
|
),
|
|
child: Text(
|
|
message(ref.watch(pAmountFormatter(coin)).format(amount)),
|
|
style: STextStyles.desktopTextMedium(context).copyWith(
|
|
color: Theme.of(context).extension<StackColors>()!.textDark3,
|
|
),
|
|
),
|
|
),
|
|
Padding(
|
|
padding: const EdgeInsets.only(
|
|
left: 40,
|
|
bottom: 40,
|
|
right: 40,
|
|
top: 32,
|
|
),
|
|
child: Row(
|
|
children: [
|
|
Expanded(
|
|
child: SecondaryButton(
|
|
buttonHeight: ButtonHeight.l,
|
|
label: "Cancel",
|
|
onPressed: Navigator.of(context).pop,
|
|
),
|
|
),
|
|
const SizedBox(
|
|
width: 16,
|
|
),
|
|
Expanded(
|
|
child: PrimaryButton(
|
|
buttonHeight: ButtonHeight.l,
|
|
label: "Connect",
|
|
onPressed: onConfirmPressed,
|
|
),
|
|
),
|
|
],
|
|
),
|
|
)
|
|
],
|
|
),
|
|
);
|
|
} else {
|
|
return StackDialog(
|
|
title: title,
|
|
icon: SvgPicture.asset(
|
|
Assets.svg.userPlus,
|
|
color: Theme.of(context).extension<StackColors>()!.textDark,
|
|
width: 24,
|
|
height: 24,
|
|
),
|
|
message: message(ref.watch(pAmountFormatter(coin)).format(amount)),
|
|
leftButton: SecondaryButton(
|
|
buttonHeight: ButtonHeight.xl,
|
|
label: "Cancel",
|
|
onPressed: Navigator.of(context).pop,
|
|
),
|
|
rightButton: PrimaryButton(
|
|
buttonHeight: ButtonHeight.xl,
|
|
label: "Connect",
|
|
onPressed: onConfirmPressed,
|
|
),
|
|
);
|
|
}
|
|
}
|
|
}
|