|
- import 'controller/app_navigation_controller.dart';
- import 'package:flutter/material.dart';
- import 'package:michele_s_application8/core/app_export.dart';
-
- class AppNavigationScreen extends GetWidget<AppNavigationController> {
- @override
- Widget build(BuildContext context) {
- return SafeArea(
- child: Scaffold(
- backgroundColor: ColorConstant.whiteA700,
- body: Container(
- width: double.maxFinite,
- child: Column(
- mainAxisAlignment: MainAxisAlignment.start,
- children: [
- Container(
- decoration: AppDecoration.fillWhiteA700,
- child: Column(
- mainAxisAlignment: MainAxisAlignment.start,
- children: [
- Align(
- alignment: Alignment.centerLeft,
- child: Padding(
- padding: getPadding(
- left: 20,
- top: 10,
- right: 20,
- bottom: 10),
- child: Text("lbl_app_navigation".tr,
- overflow: TextOverflow.ellipsis,
- textAlign: TextAlign.center,
- style:
- AppStyle.txtRobotoRegular20))),
- Align(
- alignment: Alignment.centerLeft,
- child: Padding(
- padding: getPadding(left: 20),
- child: Text("msg_check_your_app_s".tr,
- overflow: TextOverflow.ellipsis,
- textAlign: TextAlign.center,
- style:
- AppStyle.txtRobotoRegular16))),
- Padding(
- padding: getPadding(top: 5),
- child:
- Divider(color: ColorConstant.black900))
- ])),
- Expanded(
- child: SingleChildScrollView(
- child: Container(
- decoration: AppDecoration.fillWhiteA700,
- child: Column(
- mainAxisAlignment:
- MainAxisAlignment.start,
- children: [
- GestureDetector(
- onTap: () {
- onTapSplashScreenOne();
- },
- child: Container(
- decoration:
- AppDecoration.fillWhiteA700,
- child: Column(
- mainAxisAlignment:
- MainAxisAlignment.start,
- children: [
- Align(
- alignment: Alignment
- .centerLeft,
- child: Padding(
- padding:
- getPadding(
- left: 20,
- top: 10,
- right: 20,
- bottom:
- 10),
- child: Text(
- "msg_splash_screen_one"
- .tr,
- overflow:
- TextOverflow
- .ellipsis,
- textAlign:
- TextAlign
- .center,
- style: AppStyle
- .txtRobotoRegular20))),
- Padding(
- padding: getPadding(
- top: 5),
- child: Divider(
- color: ColorConstant
- .bluegray400))
- ]))),
- GestureDetector(
- onTap: () {
- onTapLogin();
- },
- child: Container(
- decoration:
- AppDecoration.fillWhiteA700,
- child: Column(
- mainAxisAlignment:
- MainAxisAlignment.start,
- children: [
- Align(
- alignment: Alignment
- .centerLeft,
- child: Padding(
- padding:
- getPadding(
- left: 20,
- top: 10,
- right: 20,
- bottom:
- 10),
- child: Text(
- "lbl_login"
- .tr,
- overflow:
- TextOverflow
- .ellipsis,
- textAlign:
- TextAlign
- .center,
- style: AppStyle
- .txtRobotoRegular20))),
- Padding(
- padding: getPadding(
- top: 5),
- child: Divider(
- color: ColorConstant
- .bluegray400))
- ]))),
- GestureDetector(
- onTap: () {
- onTapAbilitaDisabilitaclasseTwo();
- },
- child: Container(
- decoration:
- AppDecoration.fillWhiteA700,
- child: Column(
- mainAxisAlignment:
- MainAxisAlignment.start,
- children: [
- Align(
- alignment: Alignment
- .centerLeft,
- child: Padding(
- padding:
- getPadding(
- left: 20,
- top: 10,
- right: 20,
- bottom:
- 10),
- child: Text(
- "msg_abilita_disabilita"
- .tr,
- overflow:
- TextOverflow
- .ellipsis,
- textAlign:
- TextAlign
- .center,
- style: AppStyle
- .txtRobotoRegular20))),
- Padding(
- padding: getPadding(
- top: 5),
- child: Divider(
- color: ColorConstant
- .bluegray400))
- ]))),
- GestureDetector(
- onTap: () {
- onTapAbilitaDisabilitaclasse();
- },
- child: Container(
- decoration:
- AppDecoration.fillWhiteA700,
- child: Column(
- mainAxisAlignment:
- MainAxisAlignment.start,
- children: [
- Align(
- alignment: Alignment
- .centerLeft,
- child: Padding(
- padding:
- getPadding(
- left: 20,
- top: 10,
- right: 20,
- bottom:
- 10),
- child: Text(
- "msg_abilita_disabilita2"
- .tr,
- overflow:
- TextOverflow
- .ellipsis,
- textAlign:
- TextAlign
- .center,
- style: AppStyle
- .txtRobotoRegular20))),
- Padding(
- padding: getPadding(
- top: 5),
- child: Divider(
- color: ColorConstant
- .bluegray400))
- ]))),
- GestureDetector(
- onTap: () {
- onTapAbilitaDisabilitaclasseOne();
- },
- child: Container(
- decoration:
- AppDecoration.fillWhiteA700,
- child: Column(
- mainAxisAlignment:
- MainAxisAlignment.start,
- children: [
- Align(
- alignment: Alignment
- .centerLeft,
- child: Padding(
- padding:
- getPadding(
- left: 20,
- top: 10,
- right: 20,
- bottom:
- 10),
- child: Text(
- "msg_abilita_disabilita3"
- .tr,
- overflow:
- TextOverflow
- .ellipsis,
- textAlign:
- TextAlign
- .center,
- style: AppStyle
- .txtRobotoRegular20))),
- Padding(
- padding: getPadding(
- top: 5),
- child: Divider(
- color: ColorConstant
- .bluegray400))
- ])))
- ]))))
- ]))));
- }
-
- onTapSplashScreenOne() {
- Get.toNamed(AppRoutes.splashScreenOneScreen);
- }
-
- onTapLogin() {
- Get.toNamed(AppRoutes.loginScreen);
- }
-
- onTapAbilitaDisabilitaclasseTwo() {
- Get.toNamed(AppRoutes.abilitaDisabilitaClasseTwoScreen);
- }
-
- onTapAbilitaDisabilitaclasse() {
- Get.toNamed(AppRoutes.abilitaDisabilitaClasseScreen);
- }
-
- onTapAbilitaDisabilitaclasseOne() {
- Get.toNamed(AppRoutes.abilitaDisabilitaClasseOneScreen);
- }
- }
|