// ignore_for_file: file_names import 'package:easy_localization/easy_localization.dart'; import 'package:flutter/services.dart'; import 'package:flutter/material.dart'; import 'package:gecko/globals.dart'; import 'package:gecko/models/widgets_keys.dart'; import 'package:gecko/screens/common_elements.dart'; class OnboardingStepEleven extends StatelessWidget { const OnboardingStepEleven({Key? key}) : super(key: key); @override Widget build(BuildContext context) { SystemChrome.setPreferredOrientations([DeviceOrientation.portraitUp]); CommonElements common = CommonElements(); return Scaffold( backgroundColor: backgroundColor, appBar: AppBar( toolbarHeight: 60 * ratio, title: SizedBox( height: 22, child: Text( 'allGood'.tr(), style: const TextStyle(fontWeight: FontWeight.w600), ), ), ), extendBodyBehindAppBar: true, body: SafeArea( child: Column(children: [ const SizedBox(height: 40), common.buildText("yourChestAndWalletWereCreatedSuccessfully".tr()), SizedBox(height: isTall ? 20 : 10), Image.asset( 'assets/onBoarding/gecko-clin.gif', height: isTall ? 400 : 300, ), Expanded( child: Align( alignment: Alignment.bottomCenter, child: finishButton(context)), ), const SizedBox(height: 40), ]), )); } } Widget finishButton(BuildContext context) { return SizedBox( width: 380 * ratio, height: 60 * ratio, child: ElevatedButton( key: keyGoWalletsHome, style: ElevatedButton.styleFrom( foregroundColor: Colors.white, elevation: 4, backgroundColor: orangeC, // foreground ), onPressed: () { //TODO: fix bad widget ancestor when pupUntil (multi_chest test failed) // Navigator.popUntil(homeContext, ModalRoute.withName('/')); // Navigator.of(homeContext, rootNavigator: true) // .popUntil(ModalRoute.withName('/')); // while (Navigator.of(homeContext).canPop()) { // Navigator.of(homeContext).pop(); // } // Navigator.pushNamed(homeContext, '/mywallets'); Navigator.pushNamedAndRemoveUntil( context, '/mywallets', (route) => route.isFirst); // Navigator.pushNamedAndRemoveUntil( // homeContext, '/mywallets', ModalRoute.withName('/')); }, child: Text("accessMyChest".tr(), style: TextStyle(fontSize: 22 * ratio, fontWeight: FontWeight.w600))), ); }