2020-12-15 21:43:50 +02:00
|
|
|
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';
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
return Scaffold(
|
2020-10-12 11:47:20 +03: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) {
|
2020-12-15 21:30:16 +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,
|
2020-10-12 11:47:20 +03:00
|
|
|
color: Theme
|
|
|
|
.of(context)
|
|
|
|
.accentTextTheme
|
|
|
|
.headline
|
|
|
|
.decorationColor);
|
2020-05-29 18:10:11 +03:00
|
|
|
final restoreWalletImage = Image.asset('assets/images/restore_wallet.png',
|
|
|
|
height: 12,
|
|
|
|
width: 12,
|
2020-10-12 11:47:20 +03:00
|
|
|
color: Theme
|
|
|
|
.of(context)
|
|
|
|
.primaryTextTheme
|
|
|
|
.title
|
|
|
|
.color);
|
2020-05-29 18:10:11 +03:00
|
|
|
|
2020-10-14 00:11:04 +03:00
|
|
|
return WillPopScope(onWillPop: () async => false, child: Container(
|
2021-02-09 19:57:58 +02:00
|
|
|
padding: EdgeInsets.only(top: 64, bottom: 24, left: 24, right: 24),
|
2020-10-12 11:47:20 +03:00
|
|
|
child: Column(
|
2021-02-09 19:57:58 +02:00
|
|
|
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,
|
2020-06-09 21:43:55 +03:00
|
|
|
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)
|
|
|
|
.accentTextTheme
|
|
|
|
.display3
|
|
|
|
.color,
|
|
|
|
),
|
|
|
|
textAlign: TextAlign.center,
|
|
|
|
),
|
2020-06-09 21:43:55 +03:00
|
|
|
),
|
2020-10-12 11:47:20 +03:00
|
|
|
Padding(
|
|
|
|
padding: EdgeInsets.only(top: 5),
|
|
|
|
child: Text(
|
|
|
|
S
|
|
|
|
.of(context)
|
|
|
|
.cake_wallet,
|
|
|
|
style: TextStyle(
|
|
|
|
fontSize: 36,
|
|
|
|
fontWeight: FontWeight.bold,
|
|
|
|
color: Theme
|
|
|
|
.of(context)
|
|
|
|
.primaryTextTheme
|
|
|
|
.title
|
|
|
|
.color,
|
|
|
|
),
|
|
|
|
textAlign: TextAlign.center,
|
|
|
|
),
|
2020-06-09 21:43:55 +03:00
|
|
|
),
|
2020-10-12 11:47:20 +03:00
|
|
|
Padding(
|
|
|
|
padding: EdgeInsets.only(top: 5),
|
|
|
|
child: Text(
|
|
|
|
S
|
|
|
|
.of(context)
|
|
|
|
.first_wallet_text,
|
|
|
|
style: TextStyle(
|
|
|
|
fontSize: 16,
|
|
|
|
fontWeight: FontWeight.w500,
|
|
|
|
color: Theme
|
|
|
|
.of(context)
|
|
|
|
.accentTextTheme
|
|
|
|
.display3
|
|
|
|
.color,
|
|
|
|
),
|
|
|
|
textAlign: TextAlign.center,
|
|
|
|
),
|
2020-06-09 21:43:55 +03:00
|
|
|
),
|
2020-10-12 11:47:20 +03:00
|
|
|
],
|
2020-06-09 21:43:55 +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,
|
|
|
|
color: Theme
|
|
|
|
.of(context)
|
|
|
|
.accentTextTheme
|
|
|
|
.display3
|
|
|
|
.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
|
|
|
|
.subtitle
|
|
|
|
.decorationColor,
|
|
|
|
textColor: Theme
|
|
|
|
.of(context)
|
|
|
|
.accentTextTheme
|
|
|
|
.headline
|
|
|
|
.decorationColor,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
Padding(
|
|
|
|
padding: EdgeInsets.only(top: 10),
|
|
|
|
child: PrimaryImageButton(
|
|
|
|
onPressed: () =>
|
|
|
|
Navigator.pushNamed(context,
|
2021-01-15 19:41:30 +02:00
|
|
|
Routes.restoreOptions),
|
2020-10-12 11:47:20 +03:00
|
|
|
image: restoreWalletImage,
|
|
|
|
text: S
|
|
|
|
.of(context)
|
|
|
|
.restore_wallet,
|
|
|
|
color: Theme
|
|
|
|
.of(context)
|
|
|
|
.accentTextTheme
|
|
|
|
.caption
|
|
|
|
.color,
|
|
|
|
textColor: Theme
|
|
|
|
.of(context)
|
|
|
|
.primaryTextTheme
|
|
|
|
.title
|
|
|
|
.color),
|
|
|
|
)
|
|
|
|
],
|
2020-06-09 21:43:55 +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
|
|
|
}
|
|
|
|
}
|