2024-07-21 03:46:43 +03:00
|
|
|
import 'package:cake_wallet/src/widgets/scollable_with_bottom_section.dart';
|
2023-08-17 12:28:31 -03:00
|
|
|
import 'package:cake_wallet/themes/extensions/cake_text_theme.dart';
|
2020-12-15 21:43:50 +02:00
|
|
|
import 'package:cake_wallet/themes/theme_base.dart';
|
2023-04-14 06:39:08 +02:00
|
|
|
import 'package:cake_wallet/utils/responsive_layout_util.dart';
|
2020-01-04 21:31:52 +02:00
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
import 'package:cake_wallet/routes.dart';
|
|
|
|
import 'package:cake_wallet/src/widgets/primary_button.dart';
|
|
|
|
import 'package:cake_wallet/src/screens/base_page.dart';
|
|
|
|
import 'package:cake_wallet/generated/i18n.dart';
|
2021-12-30 19:20:00 +02:00
|
|
|
import 'package:cake_wallet/wallet_type_utils.dart';
|
2023-08-17 12:28:31 -03:00
|
|
|
import 'package:cake_wallet/themes/extensions/new_wallet_theme.dart';
|
|
|
|
import 'package:cake_wallet/themes/extensions/wallet_list_theme.dart';
|
2020-01-04 21:31:52 +02:00
|
|
|
|
|
|
|
class WelcomePage extends BasePage {
|
2020-04-28 20:50:12 +03:00
|
|
|
static const aspectRatioImage = 1.25;
|
2020-12-14 19:54:56 +02:00
|
|
|
final welcomeImageLight = Image.asset('assets/images/welcome_light.png');
|
|
|
|
final welcomeImageDark = Image.asset('assets/images/welcome.png');
|
2020-01-04 21:31:52 +02:00
|
|
|
|
2022-03-30 17:57:04 +02:00
|
|
|
String appTitle(BuildContext context) {
|
|
|
|
if (isMoneroOnly) {
|
|
|
|
return S.of(context).monero_com;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isHaven) {
|
|
|
|
return S.of(context).haven_app;
|
|
|
|
}
|
2023-04-14 06:39:08 +02:00
|
|
|
|
2022-03-30 17:57:04 +02:00
|
|
|
return S.of(context).cake_wallet;
|
|
|
|
}
|
|
|
|
|
|
|
|
String appDescription(BuildContext context) {
|
|
|
|
if (isMoneroOnly) {
|
|
|
|
return S.of(context).monero_com_wallet_text;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isHaven) {
|
|
|
|
return S.of(context).haven_app_wallet_text;
|
|
|
|
}
|
2023-04-14 06:39:08 +02:00
|
|
|
|
2023-10-04 21:09:07 -04:00
|
|
|
return S.of(context).new_first_wallet_text;
|
2022-03-30 17:57:04 +02:00
|
|
|
}
|
|
|
|
|
2020-01-04 21:31:52 +02:00
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
return Scaffold(
|
2023-05-24 20:19:51 -03:00
|
|
|
backgroundColor: Theme.of(context).colorScheme.background,
|
2021-04-02 20:43:06 +03:00
|
|
|
resizeToAvoidBottomInset: false,
|
2021-02-09 19:57:58 +02:00
|
|
|
body: body(context));
|
2020-01-04 21:31:52 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
Widget body(BuildContext context) {
|
2024-07-21 03:46:43 +03:00
|
|
|
final welcomeImage = currentTheme.type == ThemeType.dark ? welcomeImageDark : welcomeImageLight;
|
2020-06-09 21:43:55 +03:00
|
|
|
|
2020-05-29 18:10:11 +03:00
|
|
|
final newWalletImage = Image.asset('assets/images/new_wallet.png',
|
|
|
|
height: 12,
|
|
|
|
width: 12,
|
2023-08-17 12:28:31 -03:00
|
|
|
color: Theme.of(context).extension<WalletListTheme>()!.restoreWalletButtonTextColor);
|
2020-05-29 18:10:11 +03:00
|
|
|
final restoreWalletImage = Image.asset('assets/images/restore_wallet.png',
|
2024-07-21 03:46:43 +03:00
|
|
|
height: 12, width: 12, color: Theme.of(context).extension<CakeTextTheme>()!.titleColor);
|
2020-05-29 18:10:11 +03:00
|
|
|
|
2023-04-14 06:39:08 +02:00
|
|
|
return WillPopScope(
|
2024-07-21 03:46:43 +03:00
|
|
|
onWillPop: () async => false,
|
|
|
|
child: ScrollableWithBottomSection(
|
|
|
|
content: Container(
|
|
|
|
alignment: Alignment.center,
|
|
|
|
padding: EdgeInsets.only(top: 64, bottom: 24, left: 24, right: 24),
|
|
|
|
child: ConstrainedBox(
|
|
|
|
constraints:
|
|
|
|
BoxConstraints(maxWidth: ResponsiveLayoutUtilBase.kDesktopMaxWidthConstraint),
|
|
|
|
child: Column(
|
|
|
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
|
|
|
children: <Widget>[
|
|
|
|
Column(
|
|
|
|
children: <Widget>[
|
|
|
|
AspectRatio(
|
|
|
|
aspectRatio: aspectRatioImage,
|
|
|
|
child: FittedBox(child: welcomeImage, fit: BoxFit.contain),
|
|
|
|
),
|
|
|
|
Padding(
|
|
|
|
padding: EdgeInsets.only(top: 24),
|
|
|
|
child: Text(
|
|
|
|
S.of(context).welcome,
|
|
|
|
style: TextStyle(
|
|
|
|
fontSize: 18,
|
|
|
|
fontWeight: FontWeight.w500,
|
|
|
|
color: Theme.of(context).extension<NewWalletTheme>()!.hintTextColor,
|
2023-07-12 12:52:28 -03:00
|
|
|
),
|
2024-07-21 03:46:43 +03:00
|
|
|
textAlign: TextAlign.center,
|
2023-07-12 12:52:28 -03:00
|
|
|
),
|
2024-07-21 03:46:43 +03:00
|
|
|
),
|
|
|
|
Padding(
|
|
|
|
padding: EdgeInsets.only(top: 5),
|
|
|
|
child: Text(
|
|
|
|
appTitle(context),
|
|
|
|
style: TextStyle(
|
|
|
|
fontSize: 36,
|
|
|
|
fontWeight: FontWeight.bold,
|
|
|
|
color: Theme.of(context).extension<CakeTextTheme>()!.titleColor,
|
2023-07-12 12:52:28 -03:00
|
|
|
),
|
2024-07-21 03:46:43 +03:00
|
|
|
textAlign: TextAlign.center,
|
2023-07-12 12:52:28 -03:00
|
|
|
),
|
2024-07-21 03:46:43 +03:00
|
|
|
),
|
|
|
|
Padding(
|
|
|
|
padding: EdgeInsets.only(top: 5),
|
|
|
|
child: Text(
|
|
|
|
appDescription(context),
|
2023-07-12 12:52:28 -03:00
|
|
|
style: TextStyle(
|
2024-07-21 03:46:43 +03:00
|
|
|
fontSize: 16,
|
|
|
|
fontWeight: FontWeight.w500,
|
2023-08-17 12:28:31 -03:00
|
|
|
color: Theme.of(context).extension<NewWalletTheme>()!.hintTextColor,
|
2023-07-12 12:52:28 -03:00
|
|
|
),
|
|
|
|
textAlign: TextAlign.center,
|
|
|
|
),
|
2024-07-21 03:46:43 +03:00
|
|
|
),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
bottomSection: Column(
|
|
|
|
children: <Widget>[
|
|
|
|
Text(
|
|
|
|
S.of(context).please_make_selection,
|
|
|
|
style: TextStyle(
|
|
|
|
fontSize: 12,
|
|
|
|
fontWeight: FontWeight.normal,
|
|
|
|
color: Theme.of(context).extension<NewWalletTheme>()!.hintTextColor,
|
|
|
|
),
|
|
|
|
textAlign: TextAlign.center,
|
|
|
|
),
|
|
|
|
Padding(
|
|
|
|
padding: EdgeInsets.only(top: 24),
|
|
|
|
child: PrimaryImageButton(
|
2024-09-22 03:46:51 +01:00
|
|
|
key: ValueKey('welcome_page_create_new_wallet_button_key'),
|
2024-07-21 03:46:43 +03:00
|
|
|
onPressed: () => Navigator.pushNamed(context, Routes.newWalletFromWelcome),
|
|
|
|
image: newWalletImage,
|
|
|
|
text: S.of(context).create_new,
|
|
|
|
color: Theme.of(context)
|
|
|
|
.extension<WalletListTheme>()!
|
|
|
|
.createNewWalletButtonBackgroundColor,
|
|
|
|
textColor:
|
|
|
|
Theme.of(context).extension<WalletListTheme>()!.restoreWalletButtonTextColor,
|
2023-04-14 06:39:08 +02:00
|
|
|
),
|
2024-07-21 03:46:43 +03:00
|
|
|
),
|
|
|
|
Padding(
|
|
|
|
padding: EdgeInsets.only(top: 10),
|
|
|
|
child: PrimaryImageButton(
|
2024-09-22 03:46:51 +01:00
|
|
|
key: ValueKey('welcome_page_restore_wallet_button_key'),
|
2024-07-21 03:46:43 +03:00
|
|
|
onPressed: () {
|
|
|
|
Navigator.pushNamed(context, Routes.restoreOptions, arguments: true);
|
|
|
|
},
|
|
|
|
image: restoreWalletImage,
|
|
|
|
text: S.of(context).restore_wallet,
|
|
|
|
color: Theme.of(context).cardColor,
|
|
|
|
textColor: Theme.of(context).extension<CakeTextTheme>()!.titleColor),
|
|
|
|
)
|
|
|
|
],
|
|
|
|
),
|
|
|
|
),
|
|
|
|
);
|
2020-01-04 21:31:52 +02:00
|
|
|
}
|
|
|
|
}
|