gecko/lib/screens/onBoarding/7.dart

46 lines
1.3 KiB
Dart
Raw Normal View History

2021-11-14 19:21:20 +01:00
// ignore_for_file: file_names
2022-06-17 23:10:01 +02:00
import 'package:easy_localization/easy_localization.dart';
2021-02-28 02:38:52 +01:00
import 'package:flutter/material.dart';
import 'package:gecko/globals.dart';
2021-11-14 19:21:20 +01:00
import 'package:gecko/screens/common_elements.dart';
2021-03-08 06:21:04 +01:00
import 'package:gecko/screens/onBoarding/8.dart';
2021-02-28 02:38:52 +01:00
2022-05-23 10:53:44 +02:00
class OnboardingStepSeven extends StatelessWidget {
2022-06-14 22:10:35 +02:00
const OnboardingStepSeven({Key? key, this.scanDerivation = false})
: super(key: key);
2022-06-07 01:10:40 +02:00
final bool scanDerivation;
2021-11-14 19:21:20 +01:00
2021-02-28 02:38:52 +01:00
@override
Widget build(BuildContext context) {
CommonElements common = CommonElements();
2021-02-28 02:38:52 +01:00
return Scaffold(
2022-05-29 00:00:57 +02:00
backgroundColor: backgroundColor,
2022-05-23 10:53:44 +02:00
appBar: AppBar(
toolbarHeight: 60 * ratio,
2022-06-17 23:10:01 +02:00
title: SizedBox(
2022-05-23 10:53:44 +02:00
height: 22,
child: Text(
2022-06-17 23:10:01 +02:00
'myPassword'.tr(),
style: const TextStyle(fontWeight: FontWeight.w600),
2022-05-23 10:53:44 +02:00
),
2021-02-28 06:22:44 +01:00
),
),
2022-05-23 10:53:44 +02:00
extendBodyBehindAppBar: true,
body: SafeArea(
child: Stack(children: [
common.infoIntro(
context,
'geckoWillGenerateAPassword'.tr(),
'coffre-fort-code-secret-dans-telephone.png',
'>',
OnboardingStepEight(scanDerivation: scanDerivation),
6,
boxHeight: 400),
CommonElements().offlineInfo(context),
]),
2022-05-23 10:53:44 +02:00
),
2021-02-28 06:22:44 +01:00
);
}
}