gecko/lib/screens/onBoarding/5_stepFive.dart

56 lines
2.2 KiB
Dart
Raw Normal View History

2021-02-28 02:38:52 +01:00
import 'package:flutter/services.dart';
import 'package:flutter/material.dart';
import 'package:gecko/globals.dart';
2021-02-28 02:38:52 +01:00
import 'package:gecko/screens/commonElements.dart';
import 'package:gecko/screens/onBoarding/7_stepSeven.dart';
2021-02-28 02:38:52 +01:00
// ignore: must_be_immutable
class OnboardingStepFive extends StatelessWidget {
TextEditingController tplController = TextEditingController();
2021-03-08 01:08:26 +01:00
final int progress = 4;
2021-02-28 02:38:52 +01:00
@override
Widget build(BuildContext context) {
SystemChrome.setPreferredOrientations([DeviceOrientation.portraitUp]);
CommonElements common = CommonElements();
2021-02-28 02:38:52 +01:00
return Scaffold(
extendBodyBehindAppBar: true,
body: SafeArea(
child: Column(children: <Widget>[
common.onboardingProgressBar('Ma phrase de restauration', progress),
common.bubbleSpeak(
"Par contre, attention :\n\nDans une blockchain, il ny a pas de procédure de récupération de trousseau.\n\nSi vous perdez votre phrase de restauration, je ne pourrai pas vous la communiquer, et vous ne pourrez donc plus jamais accéder à votre compte.",
2021-02-28 02:38:52 +01:00
),
SizedBox(height: isTall ? 30 : 10),
2021-02-28 02:38:52 +01:00
Image.asset(
'assets/onBoarding/maison-qui-brule.png',
width: 320 * ratio,
2021-02-28 02:38:52 +01:00
),
Expanded(
child: Align(
alignment: Alignment.bottomCenter,
child: SizedBox(
width: 400,
height: 62,
2021-02-28 02:38:52 +01:00
child: ElevatedButton(
style: ElevatedButton.styleFrom(
elevation: 5,
primary: Color(0xffD28928),
onPrimary: Colors.white, // foreground
),
onPressed: () {
Navigator.push(
context,
SmoothTransition(page: OnboardingStepSeven()),
2021-02-28 02:38:52 +01:00
);
},
child: Text("J'ai compris",
style: TextStyle(fontSize: 20))),
))),
SizedBox(height: 80),
]),
));
}
}