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';
|
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
|
|
|
|
2022-03-30 17:57:04 +02:00
|
|
|
return S.of(context).first_wallet_text;
|
|
|
|
}
|
|
|
|
|
2020-01-04 21:31:52 +02:00
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
return Scaffold(
|
2023-04-14 06:39:08 +02:00
|
|
|
backgroundColor: Theme.of(context).backgroundColor,
|
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) {
|
2023-04-14 06:39:08 +02: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-04-14 06:39:08 +02:00
|
|
|
color: Theme.of(context).accentTextTheme!.headline5!.decorationColor!);
|
2020-05-29 18:10:11 +03:00
|
|
|
final restoreWalletImage = Image.asset('assets/images/restore_wallet.png',
|
2023-04-14 06:39:08 +02:00
|
|
|
height: 12, width: 12, color: Theme.of(context).primaryTextTheme!.headline6!.color!);
|
2020-05-29 18:10:11 +03:00
|
|
|
|
2023-04-14 06:39:08 +02:00
|
|
|
return WillPopScope(
|
|
|
|
onWillPop: () async => false,
|
|
|
|
child: Container(
|
|
|
|
padding: EdgeInsets.only(top: 64, bottom: 24, left: 24, right: 24),
|
|
|
|
child: Center(
|
|
|
|
child: ConstrainedBox(
|
|
|
|
constraints:
|
|
|
|
BoxConstraints(maxWidth: ResponsiveLayoutUtil.kDesktopMaxWidthConstraint),
|
2020-10-12 11:47:20 +03:00
|
|
|
child: Column(
|
|
|
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
2020-06-09 21:43:55 +03:00
|
|
|
children: <Widget>[
|
2023-04-14 06:39:08 +02:00
|
|
|
Flexible(
|
|
|
|
flex: 2,
|
|
|
|
child: AspectRatio(
|
|
|
|
aspectRatio: aspectRatioImage,
|
|
|
|
child: FittedBox(child: welcomeImage, fit: BoxFit.fill))),
|
|
|
|
Flexible(
|
|
|
|
flex: 3,
|
|
|
|
child: Column(
|
|
|
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
|
|
|
children: <Widget>[
|
|
|
|
Column(
|
|
|
|
children: <Widget>[
|
|
|
|
Padding(
|
|
|
|
padding: EdgeInsets.only(top: 24),
|
|
|
|
child: Text(
|
|
|
|
S.of(context).welcome,
|
|
|
|
style: TextStyle(
|
|
|
|
fontSize: 18,
|
|
|
|
fontWeight: FontWeight.w500,
|
|
|
|
color: Theme.of(context).accentTextTheme!.headline2!.color!,
|
|
|
|
),
|
|
|
|
textAlign: TextAlign.center,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
Padding(
|
|
|
|
padding: EdgeInsets.only(top: 5),
|
|
|
|
child: Text(
|
|
|
|
appTitle(context),
|
|
|
|
style: TextStyle(
|
|
|
|
fontSize: 36,
|
|
|
|
fontWeight: FontWeight.bold,
|
|
|
|
color: Theme.of(context).primaryTextTheme!.headline6!.color!,
|
|
|
|
),
|
|
|
|
textAlign: TextAlign.center,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
Padding(
|
|
|
|
padding: EdgeInsets.only(top: 5),
|
|
|
|
child: Text(
|
|
|
|
appDescription(context),
|
|
|
|
style: TextStyle(
|
|
|
|
fontSize: 16,
|
|
|
|
fontWeight: FontWeight.w500,
|
|
|
|
color: Theme.of(context).accentTextTheme!.headline2!.color!,
|
|
|
|
),
|
|
|
|
textAlign: TextAlign.center,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
],
|
2020-10-12 11:47:20 +03:00
|
|
|
),
|
2023-04-14 06:39:08 +02:00
|
|
|
Column(
|
|
|
|
children: <Widget>[
|
|
|
|
Text(
|
|
|
|
S.of(context).please_make_selection,
|
|
|
|
style: TextStyle(
|
|
|
|
fontSize: 12,
|
|
|
|
fontWeight: FontWeight.normal,
|
|
|
|
color: Theme.of(context).accentTextTheme!.headline2!.color!,
|
|
|
|
),
|
|
|
|
textAlign: TextAlign.center,
|
|
|
|
),
|
|
|
|
Padding(
|
|
|
|
padding: EdgeInsets.only(top: 24),
|
|
|
|
child: PrimaryImageButton(
|
|
|
|
onPressed: () =>
|
|
|
|
Navigator.pushNamed(context, Routes.newWalletFromWelcome),
|
|
|
|
image: newWalletImage,
|
|
|
|
text: S.of(context).create_new,
|
|
|
|
color: Theme.of(context)
|
|
|
|
.accentTextTheme!
|
|
|
|
.subtitle2!
|
|
|
|
.decorationColor!,
|
|
|
|
textColor: Theme.of(context)
|
|
|
|
.accentTextTheme!
|
|
|
|
.headline5!
|
|
|
|
.decorationColor!,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
Padding(
|
|
|
|
padding: EdgeInsets.only(top: 10),
|
|
|
|
child: PrimaryImageButton(
|
|
|
|
onPressed: () {
|
2023-04-21 21:36:47 +03:00
|
|
|
Navigator.pushNamed(context, Routes.restoreOptions,
|
|
|
|
arguments: true);
|
2023-04-14 06:39:08 +02:00
|
|
|
},
|
|
|
|
image: restoreWalletImage,
|
|
|
|
text: S.of(context).restore_wallet,
|
|
|
|
color: Theme.of(context).accentTextTheme!.caption!.color!,
|
|
|
|
textColor:
|
|
|
|
Theme.of(context).primaryTextTheme!.headline6!.color!),
|
|
|
|
)
|
|
|
|
],
|
|
|
|
)
|
|
|
|
],
|
|
|
|
))
|
2020-06-09 21:43:55 +03:00
|
|
|
],
|
2023-04-14 06:39:08 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
)));
|
2020-01-04 21:31:52 +02:00
|
|
|
}
|
|
|
|
}
|