gecko/lib/screens/onBoarding/1.dart

44 lines
1.2 KiB
Dart
Raw Normal View History

2021-11-14 19:21:20 +01:00
// ignore_for_file: file_names
import 'package:easy_localization/easy_localization.dart';
2021-02-28 02:38:52 +01:00
import 'package:flutter/material.dart';
2021-11-08 23:12:25 +01:00
import 'package:gecko/globals.dart';
2021-03-08 06:21:04 +01:00
import 'package:gecko/screens/onBoarding/2.dart';
2022-12-10 08:16:38 +01:00
import 'package:gecko/widgets/commons/intro_info.dart';
import 'package:gecko/widgets/commons/offline_info.dart';
2021-02-28 02:38:52 +01:00
class OnboardingStepOne extends StatelessWidget {
2022-05-23 10:53:44 +02:00
const OnboardingStepOne({Key? key}) : super(key: key);
2021-11-14 19:21:20 +01:00
2021-02-28 02:38:52 +01:00
@override
Widget build(BuildContext context) {
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 22:19:14 +02:00
title: SizedBox(
2022-05-23 10:53:44 +02:00
height: 22,
child: Text(
2022-06-17 22:19:14 +02:00
'newWallet'.tr(),
style: const TextStyle(fontWeight: FontWeight.w600),
2022-05-21 06:47:26 +02:00
),
),
2022-05-23 10:53:44 +02:00
),
extendBodyBehindAppBar: true,
body: SafeArea(
child: Stack(children: [
2022-12-10 08:16:38 +01:00
InfoIntro(
text: 'geckoGenerateYourWalletFromMnemonic'.tr(),
assetName: 'fabrication-de-portefeuille.png',
buttonText: '>',
nextScreen: const OnboardingStepTwo(),
pagePosition: 0,
isMd: true,
),
2022-12-10 08:16:38 +01:00
const OfflineInfo(),
]),
2022-05-23 10:53:44 +02:00
),
);
2021-02-28 02:38:52 +01:00
}
}