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

190 lines
7.2 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';
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
@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)
.accentTextTheme
.headline
.decorationColor);
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-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)
.accentTextTheme
.display3
.color,
),
textAlign: TextAlign.center,
),
),
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-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-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,
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-01-04 21:31:52 +02:00
)
2020-10-12 11:47:20 +03:00
],
)
));
2020-01-04 21:31:52 +02:00
}
}