CakeWallet/lib/src/screens/welcome/welcome_page.dart

203 lines
7.4 KiB
Dart
Raw Normal View History

import 'package:cake_wallet/themes/theme_base.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 {
static const aspectRatioImage = 1.25;
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;
}
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;
}
return S.of(context).first_wallet_text;
}
2020-01-04 21:31:52 +02:00
@override
Widget build(BuildContext context) {
return Scaffold(
2020-10-12 11:47:20 +03:00
backgroundColor: Theme
.of(context)
.backgroundColor,
resizeToAvoidBottomInset: false,
body: body(context));
2020-01-04 21:31:52 +02:00
}
@override
Widget body(BuildContext context) {
final welcomeImage = currentTheme.type == ThemeType.dark
? welcomeImageDark : welcomeImageLight;
final newWalletImage = Image.asset('assets/images/new_wallet.png',
height: 12,
width: 12,
2020-10-12 11:47:20 +03:00
color: Theme
.of(context)
2022-10-12 13:09:57 -04:00
.accentTextTheme!
.headline5!
.decorationColor!);
final restoreWalletImage = Image.asset('assets/images/restore_wallet.png',
height: 12,
width: 12,
2022-10-12 13:09:57 -04:00
color: Theme.of(context)
.primaryTextTheme!
.headline6!
.color!);
2020-10-14 00:11:04 +03:00
return WillPopScope(onWillPop: () async => false, child: Container(
padding: EdgeInsets.only(top: 64, bottom: 24, left: 24, right: 24),
2020-10-12 11:47:20 +03:00
child: Column(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
2020-10-12 11:47:20 +03:00
children: <Widget>[
Flexible(
flex: 2,
child: AspectRatio(
aspectRatio: aspectRatioImage,
child: FittedBox(child: welcomeImage, fit: BoxFit.fill)
)
),
Flexible(
flex: 3,
child: Column(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: <Widget>[
2020-10-12 11:47:20 +03:00
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)
2022-10-12 13:09:57 -04:00
.accentTextTheme!
.headline2!
.color!,
2020-10-12 11:47:20 +03:00
),
textAlign: TextAlign.center,
),
),
2020-10-12 11:47:20 +03:00
Padding(
padding: EdgeInsets.only(top: 5),
child: Text(
2022-03-30 17:57:04 +02:00
appTitle(context),
2020-10-12 11:47:20 +03:00
style: TextStyle(
fontSize: 36,
fontWeight: FontWeight.bold,
2022-10-12 13:09:57 -04:00
color: Theme.of(context)
.primaryTextTheme!
.headline6!
.color!,
2020-10-12 11:47:20 +03:00
),
textAlign: TextAlign.center,
),
),
2020-10-12 11:47:20 +03:00
Padding(
padding: EdgeInsets.only(top: 5),
child: Text(
2022-03-30 17:57:04 +02:00
appDescription(context),
2020-10-12 11:47:20 +03:00
style: TextStyle(
fontSize: 16,
fontWeight: FontWeight.w500,
color: Theme
.of(context)
2022-10-12 13:09:57 -04:00
.accentTextTheme!
.headline2!
.color!,
2020-10-12 11:47:20 +03:00
),
textAlign: TextAlign.center,
),
),
2020-10-12 11:47:20 +03:00
],
),
2020-10-12 11:47:20 +03:00
Column(
children: <Widget>[
Text(
S
.of(context)
.please_make_selection,
style: TextStyle(
fontSize: 12,
fontWeight: FontWeight.normal,
2022-10-12 13:09:57 -04:00
color: Theme.of(context)
.accentTextTheme!
.headline2!
.color!,
2020-10-12 11:47:20 +03:00
),
textAlign: TextAlign.center,
),
Padding(
padding: EdgeInsets.only(top: 24),
child: PrimaryImageButton(
onPressed: () =>
Navigator.pushNamed(context,
Routes.newWalletFromWelcome),
image: newWalletImage,
2022-10-12 13:09:57 -04:00
text: S.of(context).create_new,
color: Theme.of(context)
.accentTextTheme!
.subtitle2!
.decorationColor!,
2020-10-12 11:47:20 +03:00
textColor: Theme
.of(context)
2022-10-12 13:09:57 -04:00
.accentTextTheme!
.headline5!
.decorationColor!,
2020-10-12 11:47:20 +03:00
),
),
Padding(
padding: EdgeInsets.only(top: 10),
child: PrimaryImageButton(
2021-12-30 19:20:00 +02:00
onPressed: () {
2022-02-02 14:40:40 +02:00
Navigator.pushNamed(context, Routes.restoreOptions);
},
2020-10-12 11:47:20 +03:00
image: restoreWalletImage,
text: S
.of(context)
.restore_wallet,
2022-10-12 13:09:57 -04:00
color: Theme.of(context)
.accentTextTheme!
.caption!
.color!,
textColor: Theme.of(context)
.primaryTextTheme!
.headline6!
.color!),
2020-10-12 11:47:20 +03:00
)
],
)
],
)
2020-01-04 21:31:52 +02:00
)
2020-10-12 11:47:20 +03:00
],
)
));
2020-01-04 21:31:52 +02:00
}
}