2022-09-06 01:18:45 +00:00
|
|
|
import 'dart:async';
|
|
|
|
|
2022-08-26 08:11:35 +00:00
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
import 'package:flutter/services.dart';
|
2022-09-06 01:18:45 +00:00
|
|
|
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
2022-08-26 08:11:35 +00:00
|
|
|
import 'package:flutter_svg/flutter_svg.dart';
|
|
|
|
import 'package:qr_flutter/qr_flutter.dart';
|
2023-04-10 20:23:52 +00:00
|
|
|
import 'package:stackwallet/models/isar/models/isar_models.dart';
|
2022-08-26 08:11:35 +00:00
|
|
|
import 'package:stackwallet/notifications/show_flush_bar.dart';
|
2023-03-07 17:12:51 +00:00
|
|
|
import 'package:stackwallet/pages/receive_view/addresses/wallet_addresses_view.dart';
|
2022-08-26 08:11:35 +00:00
|
|
|
import 'package:stackwallet/pages/receive_view/generate_receiving_uri_qr_code_view.dart';
|
2022-09-06 01:18:45 +00:00
|
|
|
import 'package:stackwallet/providers/providers.dart';
|
2022-08-26 08:11:35 +00:00
|
|
|
import 'package:stackwallet/route_generator.dart';
|
|
|
|
import 'package:stackwallet/utilities/assets.dart';
|
|
|
|
import 'package:stackwallet/utilities/clipboard_interface.dart';
|
2023-02-01 15:29:51 +00:00
|
|
|
import 'package:stackwallet/utilities/constants.dart';
|
2022-08-26 08:11:35 +00:00
|
|
|
import 'package:stackwallet/utilities/enums/coin_enum.dart';
|
|
|
|
import 'package:stackwallet/utilities/text_styles.dart';
|
2022-09-22 23:48:50 +00:00
|
|
|
import 'package:stackwallet/utilities/theme/stack_colors.dart';
|
2022-11-25 19:24:01 +00:00
|
|
|
import 'package:stackwallet/widgets/background.dart';
|
2022-08-26 08:11:35 +00:00
|
|
|
import 'package:stackwallet/widgets/custom_buttons/app_bar_icon_button.dart';
|
2022-09-06 01:18:45 +00:00
|
|
|
import 'package:stackwallet/widgets/custom_buttons/blue_text_button.dart';
|
|
|
|
import 'package:stackwallet/widgets/custom_loading_overlay.dart';
|
|
|
|
import 'package:stackwallet/widgets/rounded_white_container.dart';
|
2022-08-26 08:11:35 +00:00
|
|
|
|
2022-09-06 01:18:45 +00:00
|
|
|
class ReceiveView extends ConsumerStatefulWidget {
|
2022-08-26 08:11:35 +00:00
|
|
|
const ReceiveView({
|
|
|
|
Key? key,
|
2022-09-06 01:18:45 +00:00
|
|
|
required this.walletId,
|
2023-04-10 20:23:52 +00:00
|
|
|
this.tokenContract,
|
2022-08-26 08:11:35 +00:00
|
|
|
this.clipboard = const ClipboardWrapper(),
|
|
|
|
}) : super(key: key);
|
|
|
|
|
|
|
|
static const String routeName = "/receiveView";
|
|
|
|
|
2022-09-06 01:18:45 +00:00
|
|
|
final String walletId;
|
2023-04-10 20:23:52 +00:00
|
|
|
final EthContract? tokenContract;
|
2022-08-26 08:11:35 +00:00
|
|
|
final ClipboardInterface clipboard;
|
|
|
|
|
2022-09-06 01:18:45 +00:00
|
|
|
@override
|
|
|
|
ConsumerState<ReceiveView> createState() => _ReceiveViewState();
|
|
|
|
}
|
|
|
|
|
|
|
|
class _ReceiveViewState extends ConsumerState<ReceiveView> {
|
|
|
|
late final Coin coin;
|
|
|
|
late final String walletId;
|
|
|
|
late final ClipboardInterface clipboard;
|
|
|
|
|
|
|
|
Future<void> generateNewAddress() async {
|
|
|
|
bool shouldPop = false;
|
|
|
|
unawaited(
|
|
|
|
showDialog(
|
|
|
|
context: context,
|
|
|
|
builder: (_) {
|
|
|
|
return WillPopScope(
|
|
|
|
onWillPop: () async => shouldPop,
|
2022-09-22 17:43:44 +00:00
|
|
|
child: Container(
|
2022-09-22 23:48:50 +00:00
|
|
|
color: Theme.of(context)
|
|
|
|
.extension<StackColors>()!
|
|
|
|
.overlay
|
|
|
|
.withOpacity(0.5),
|
2022-09-22 17:43:44 +00:00
|
|
|
child: const CustomLoadingOverlay(
|
|
|
|
message: "Generating address",
|
|
|
|
eventBus: null,
|
|
|
|
),
|
2022-09-06 01:18:45 +00:00
|
|
|
),
|
|
|
|
);
|
|
|
|
},
|
|
|
|
),
|
|
|
|
);
|
|
|
|
|
|
|
|
await ref
|
|
|
|
.read(walletsChangeNotifierProvider)
|
|
|
|
.getManager(walletId)
|
|
|
|
.generateNewAddress();
|
|
|
|
|
|
|
|
shouldPop = true;
|
|
|
|
|
|
|
|
if (mounted) {
|
|
|
|
Navigator.of(context)
|
|
|
|
.popUntil(ModalRoute.withName(ReceiveView.routeName));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
String receivingAddress = "";
|
|
|
|
|
|
|
|
@override
|
|
|
|
void initState() {
|
|
|
|
walletId = widget.walletId;
|
2023-04-10 20:23:52 +00:00
|
|
|
coin = ref.read(walletsChangeNotifierProvider).getManager(walletId).coin;
|
2022-09-06 01:18:45 +00:00
|
|
|
clipboard = widget.clipboard;
|
|
|
|
|
|
|
|
WidgetsBinding.instance.addPostFrameCallback((timeStamp) async {
|
|
|
|
final address = await ref
|
|
|
|
.read(walletsChangeNotifierProvider)
|
|
|
|
.getManager(walletId)
|
|
|
|
.currentReceivingAddress;
|
|
|
|
setState(() {
|
|
|
|
receivingAddress = address;
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
super.initState();
|
|
|
|
}
|
|
|
|
|
2022-08-26 08:11:35 +00:00
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
debugPrint("BUILD: $runtimeType");
|
2022-09-06 01:18:45 +00:00
|
|
|
|
|
|
|
ref.listen(
|
|
|
|
ref
|
|
|
|
.read(walletsChangeNotifierProvider)
|
|
|
|
.getManagerProvider(walletId)
|
|
|
|
.select((value) => value.currentReceivingAddress),
|
|
|
|
(previous, next) {
|
|
|
|
if (next is Future<String>) {
|
|
|
|
next.then((value) => setState(() => receivingAddress = value));
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2023-04-10 20:23:52 +00:00
|
|
|
final ticker = widget.tokenContract?.symbol ?? coin.ticker;
|
|
|
|
|
2022-11-25 19:24:01 +00:00
|
|
|
return Background(
|
|
|
|
child: Scaffold(
|
|
|
|
backgroundColor: Theme.of(context).extension<StackColors>()!.background,
|
|
|
|
appBar: AppBar(
|
|
|
|
leading: AppBarBackButton(
|
|
|
|
onPressed: () {
|
|
|
|
Navigator.of(context).pop();
|
|
|
|
},
|
|
|
|
),
|
|
|
|
title: Text(
|
2023-04-10 20:23:52 +00:00
|
|
|
"Receive $ticker",
|
2022-11-25 19:24:01 +00:00
|
|
|
style: STextStyles.navBarTitle(context),
|
|
|
|
),
|
2023-02-01 15:29:51 +00:00
|
|
|
actions: [
|
|
|
|
Padding(
|
|
|
|
padding: const EdgeInsets.only(
|
|
|
|
top: 10,
|
|
|
|
bottom: 10,
|
|
|
|
right: 10,
|
|
|
|
),
|
|
|
|
child: AspectRatio(
|
|
|
|
aspectRatio: 1,
|
|
|
|
child: AppBarIconButton(
|
|
|
|
key: const Key("walletNetworkSettingsAddNewNodeViewButton"),
|
|
|
|
size: 36,
|
|
|
|
shadows: const [],
|
|
|
|
color: Theme.of(context).extension<StackColors>()!.background,
|
|
|
|
icon: SvgPicture.asset(
|
|
|
|
Assets.svg.verticalEllipsis,
|
|
|
|
color: Theme.of(context)
|
|
|
|
.extension<StackColors>()!
|
|
|
|
.accentColorDark,
|
|
|
|
width: 20,
|
|
|
|
height: 20,
|
|
|
|
),
|
|
|
|
onPressed: () {
|
|
|
|
showDialog<dynamic>(
|
|
|
|
barrierColor: Colors.transparent,
|
|
|
|
barrierDismissible: true,
|
|
|
|
context: context,
|
|
|
|
builder: (_) {
|
|
|
|
return Stack(
|
|
|
|
children: [
|
|
|
|
Positioned(
|
|
|
|
top: 9,
|
|
|
|
right: 10,
|
|
|
|
child: Container(
|
|
|
|
decoration: BoxDecoration(
|
|
|
|
color: Theme.of(context)
|
|
|
|
.extension<StackColors>()!
|
|
|
|
.popupBG,
|
|
|
|
borderRadius: BorderRadius.circular(
|
|
|
|
Constants.size.circularBorderRadius,
|
|
|
|
),
|
|
|
|
// boxShadow: [CFColors.standardBoxShadow],
|
|
|
|
boxShadow: const [],
|
|
|
|
),
|
|
|
|
child: Column(
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
|
children: [
|
|
|
|
GestureDetector(
|
|
|
|
onTap: () {
|
|
|
|
Navigator.of(context).pop();
|
|
|
|
Navigator.of(context).pushNamed(
|
2023-03-06 21:09:32 +00:00
|
|
|
WalletAddressesView.routeName,
|
|
|
|
arguments: walletId,
|
2023-02-01 15:29:51 +00:00
|
|
|
);
|
|
|
|
},
|
|
|
|
child: RoundedWhiteContainer(
|
2023-02-02 21:37:59 +00:00
|
|
|
boxShadow: [
|
|
|
|
Theme.of(context)
|
|
|
|
.extension<StackColors>()!
|
|
|
|
.standardBoxShadow,
|
|
|
|
],
|
2023-02-01 15:29:51 +00:00
|
|
|
child: Material(
|
|
|
|
color: Colors.transparent,
|
2023-02-02 21:37:59 +00:00
|
|
|
child: Padding(
|
|
|
|
padding: const EdgeInsets.symmetric(
|
|
|
|
horizontal: 12,
|
|
|
|
),
|
|
|
|
child: Text(
|
|
|
|
"Address list",
|
|
|
|
style: STextStyles.field(context),
|
|
|
|
),
|
2023-02-01 15:29:51 +00:00
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
],
|
|
|
|
);
|
|
|
|
},
|
|
|
|
);
|
|
|
|
},
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
],
|
2022-08-26 08:11:35 +00:00
|
|
|
),
|
2022-11-25 19:24:01 +00:00
|
|
|
body: Padding(
|
|
|
|
padding: const EdgeInsets.all(12),
|
|
|
|
child: SingleChildScrollView(
|
|
|
|
child: Padding(
|
|
|
|
padding: const EdgeInsets.all(4),
|
|
|
|
child: Column(
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.stretch,
|
|
|
|
children: [
|
|
|
|
GestureDetector(
|
|
|
|
onTap: () {
|
2023-04-26 00:02:00 +00:00
|
|
|
HapticFeedback.lightImpact();
|
2022-11-25 19:24:01 +00:00
|
|
|
clipboard.setData(
|
|
|
|
ClipboardData(text: receivingAddress),
|
|
|
|
);
|
|
|
|
showFloatingFlushBar(
|
|
|
|
type: FlushBarType.info,
|
|
|
|
message: "Copied to clipboard",
|
|
|
|
iconAsset: Assets.svg.copy,
|
|
|
|
context: context,
|
|
|
|
);
|
|
|
|
},
|
|
|
|
child: RoundedWhiteContainer(
|
2022-09-06 01:18:45 +00:00
|
|
|
child: Column(
|
|
|
|
children: [
|
2022-11-25 19:24:01 +00:00
|
|
|
Row(
|
|
|
|
children: [
|
|
|
|
Text(
|
2023-04-10 20:23:52 +00:00
|
|
|
"Your $ticker address",
|
2022-11-25 19:24:01 +00:00
|
|
|
style: STextStyles.itemSubtitle(context),
|
|
|
|
),
|
|
|
|
const Spacer(),
|
|
|
|
Row(
|
|
|
|
children: [
|
|
|
|
SvgPicture.asset(
|
|
|
|
Assets.svg.copy,
|
|
|
|
width: 10,
|
|
|
|
height: 10,
|
|
|
|
color: Theme.of(context)
|
|
|
|
.extension<StackColors>()!
|
|
|
|
.infoItemIcons,
|
2022-09-06 01:18:45 +00:00
|
|
|
),
|
2022-11-25 19:24:01 +00:00
|
|
|
const SizedBox(
|
|
|
|
width: 4,
|
2022-09-06 01:18:45 +00:00
|
|
|
),
|
2022-11-25 19:24:01 +00:00
|
|
|
Text(
|
|
|
|
"Copy",
|
|
|
|
style: STextStyles.link2(context),
|
|
|
|
),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
const SizedBox(
|
|
|
|
height: 4,
|
|
|
|
),
|
|
|
|
Row(
|
|
|
|
children: [
|
|
|
|
Expanded(
|
|
|
|
child: Text(
|
|
|
|
receivingAddress,
|
|
|
|
style: STextStyles.itemSubtitle12(context),
|
2022-09-06 01:18:45 +00:00
|
|
|
),
|
2022-11-25 19:24:01 +00:00
|
|
|
),
|
|
|
|
],
|
2022-09-06 01:18:45 +00:00
|
|
|
),
|
|
|
|
],
|
2022-08-26 08:11:35 +00:00
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
2023-03-03 16:50:17 +00:00
|
|
|
if (coin != Coin.epicCash && coin != Coin.ethereum)
|
2022-11-25 19:24:01 +00:00
|
|
|
const SizedBox(
|
|
|
|
height: 12,
|
|
|
|
),
|
2023-03-03 16:50:17 +00:00
|
|
|
if (coin != Coin.epicCash && coin != Coin.ethereum)
|
2022-11-25 19:24:01 +00:00
|
|
|
TextButton(
|
|
|
|
onPressed: generateNewAddress,
|
|
|
|
style: Theme.of(context)
|
|
|
|
.extension<StackColors>()!
|
2023-01-24 19:29:12 +00:00
|
|
|
.getSecondaryEnabledButtonStyle(context),
|
2022-11-25 19:24:01 +00:00
|
|
|
child: Text(
|
|
|
|
"Generate new address",
|
|
|
|
style: STextStyles.button(context).copyWith(
|
|
|
|
color: Theme.of(context)
|
|
|
|
.extension<StackColors>()!
|
|
|
|
.accentColorDark),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
const SizedBox(
|
|
|
|
height: 30,
|
|
|
|
),
|
|
|
|
RoundedWhiteContainer(
|
|
|
|
child: Padding(
|
|
|
|
padding: const EdgeInsets.all(8.0),
|
|
|
|
child: Center(
|
|
|
|
child: Column(
|
|
|
|
children: [
|
|
|
|
QrImage(
|
|
|
|
data: "${coin.uriScheme}:$receivingAddress",
|
|
|
|
size: MediaQuery.of(context).size.width / 2,
|
|
|
|
foregroundColor: Theme.of(context)
|
|
|
|
.extension<StackColors>()!
|
|
|
|
.accentColorDark),
|
|
|
|
const SizedBox(
|
|
|
|
height: 20,
|
|
|
|
),
|
2023-01-30 21:34:21 +00:00
|
|
|
CustomTextButton(
|
2022-11-25 19:24:01 +00:00
|
|
|
text: "Create new QR code",
|
|
|
|
onTap: () async {
|
|
|
|
unawaited(Navigator.of(context).push(
|
|
|
|
RouteGenerator.getRoute(
|
|
|
|
shouldUseMaterialRoute:
|
|
|
|
RouteGenerator.useMaterialPageRoute,
|
|
|
|
builder: (_) => GenerateUriQrCodeView(
|
|
|
|
coin: coin,
|
|
|
|
receivingAddress: receivingAddress,
|
|
|
|
),
|
|
|
|
settings: const RouteSettings(
|
|
|
|
name: GenerateUriQrCodeView.routeName,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
));
|
|
|
|
},
|
|
|
|
),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
],
|
|
|
|
),
|
2022-08-26 08:11:35 +00:00
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|