2023-07-26 22:07:39 +00:00
|
|
|
/*
|
|
|
|
* 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';
|
2023-07-26 22:21:13 +00:00
|
|
|
import 'package:stackwallet/providers/global/wallets_provider.dart';
|
2023-08-24 16:22:13 +00:00
|
|
|
import 'package:stackwallet/services/mixins/fusion_wallet_interface.dart';
|
2023-07-26 22:07:39 +00:00
|
|
|
import 'package:stackwallet/themes/stack_colors.dart';
|
|
|
|
import 'package:stackwallet/utilities/assets.dart';
|
|
|
|
import 'package:stackwallet/utilities/text_styles.dart';
|
|
|
|
import 'package:stackwallet/widgets/custom_buttons/app_bar_icon_button.dart';
|
|
|
|
import 'package:stackwallet/widgets/desktop/desktop_app_bar.dart';
|
|
|
|
import 'package:stackwallet/widgets/desktop/desktop_scaffold.dart';
|
2023-09-15 18:57:01 +00:00
|
|
|
import 'package:stackwallet/widgets/rounded_white_container.dart';
|
2023-07-26 22:07:39 +00:00
|
|
|
|
|
|
|
class DesktopCashFusionView extends ConsumerStatefulWidget {
|
|
|
|
const DesktopCashFusionView({
|
|
|
|
super.key,
|
|
|
|
required this.walletId,
|
|
|
|
});
|
|
|
|
|
|
|
|
static const String routeName = "/desktopCashFusionView";
|
|
|
|
|
|
|
|
final String walletId;
|
|
|
|
|
|
|
|
@override
|
|
|
|
ConsumerState<DesktopCashFusionView> createState() => _DesktopCashFusion();
|
|
|
|
}
|
|
|
|
|
|
|
|
class _DesktopCashFusion extends ConsumerState<DesktopCashFusionView> {
|
|
|
|
@override
|
|
|
|
void initState() {
|
|
|
|
super.initState();
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
void dispose() {
|
|
|
|
super.dispose();
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
debugPrint("BUILD: $runtimeType");
|
|
|
|
|
|
|
|
return DesktopScaffold(
|
|
|
|
appBar: DesktopAppBar(
|
|
|
|
background: Theme.of(context).extension<StackColors>()!.popupBG,
|
|
|
|
isCompactHeight: true,
|
|
|
|
useSpacers: false,
|
|
|
|
leading: Expanded(
|
2023-09-15 18:57:01 +00:00
|
|
|
child: Padding(
|
|
|
|
padding: const EdgeInsets.all(24.0),
|
|
|
|
child: Row(
|
|
|
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
|
|
|
children: [
|
|
|
|
Row(
|
|
|
|
children: [
|
|
|
|
// const SizedBox(
|
|
|
|
// width: 32,
|
|
|
|
// ),
|
|
|
|
AppBarIconButton(
|
|
|
|
size: 32,
|
|
|
|
color: Theme.of(context)
|
|
|
|
.extension<StackColors>()!
|
|
|
|
.textFieldDefaultBG,
|
|
|
|
shadows: const [],
|
|
|
|
icon: SvgPicture.asset(
|
|
|
|
Assets.svg.arrowLeft,
|
|
|
|
width: 18,
|
|
|
|
height: 18,
|
|
|
|
color: Theme.of(context)
|
|
|
|
.extension<StackColors>()!
|
|
|
|
.topNavIconPrimary,
|
|
|
|
),
|
|
|
|
onPressed: Navigator.of(context).pop,
|
|
|
|
),
|
|
|
|
const SizedBox(
|
|
|
|
width: 15,
|
|
|
|
),
|
|
|
|
SvgPicture.asset(
|
|
|
|
Assets.svg.cashFusion,
|
|
|
|
width: 32,
|
|
|
|
height: 32,
|
|
|
|
),
|
|
|
|
const SizedBox(
|
|
|
|
width: 12,
|
|
|
|
),
|
|
|
|
Text(
|
|
|
|
"CashFusion",
|
|
|
|
style: STextStyles.desktopH3(context),
|
|
|
|
),
|
|
|
|
],
|
2023-07-26 22:07:39 +00:00
|
|
|
),
|
2023-09-15 18:57:01 +00:00
|
|
|
MouseRegion(
|
|
|
|
cursor: SystemMouseCursors.click,
|
|
|
|
child: GestureDetector(
|
|
|
|
onTap: () {},
|
|
|
|
child: Row(
|
|
|
|
children: [
|
|
|
|
SvgPicture.asset(
|
|
|
|
Assets.svg.circleQuestion,
|
|
|
|
color: Theme.of(context)
|
|
|
|
.extension<StackColors>()!
|
|
|
|
.radioButtonIconBorder,
|
|
|
|
),
|
|
|
|
const SizedBox(
|
|
|
|
width: 6,
|
|
|
|
),
|
|
|
|
RichText(
|
|
|
|
text: TextSpan(
|
|
|
|
text: "What is CashFusion?",
|
|
|
|
style: STextStyles.richLink(context).copyWith(
|
|
|
|
fontSize: 16,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
],
|
|
|
|
),
|
2023-07-26 22:07:39 +00:00
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
2023-09-15 18:57:01 +00:00
|
|
|
body: Row(
|
|
|
|
children: [
|
|
|
|
Padding(
|
|
|
|
padding: const EdgeInsets.all(24),
|
|
|
|
child: Column(
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
|
children: [
|
|
|
|
SizedBox(
|
|
|
|
width: 460,
|
|
|
|
child: RoundedWhiteContainer(
|
|
|
|
child: Row(
|
|
|
|
children: [
|
|
|
|
Text(
|
|
|
|
"CashFustion allows you to anonymize your BCH coins."
|
|
|
|
"\nYou must be connected to the Tor network."),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
const Text("TODO FusionParticipantList"),
|
|
|
|
const SizedBox(
|
|
|
|
height: 16,
|
|
|
|
),
|
|
|
|
TextButton(
|
|
|
|
onPressed: () => {
|
|
|
|
(ref
|
|
|
|
.read(walletsChangeNotifierProvider)
|
|
|
|
.getManager(widget.walletId)
|
|
|
|
.wallet as FusionWalletInterface)
|
|
|
|
.fuse()
|
|
|
|
},
|
|
|
|
child: Text(
|
|
|
|
"Fuse",
|
|
|
|
style: STextStyles.desktopTextMedium(context),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
],
|
2023-07-26 22:21:13 +00:00
|
|
|
),
|
2023-09-15 18:57:01 +00:00
|
|
|
),
|
|
|
|
],
|
2023-07-26 22:07:39 +00:00
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|