|
|
|
@ -1,6 +1,8 @@ |
|
|
|
import 'package:flutter/material.dart'; |
|
|
|
import 'package:shia_game_flutter/common_ui/theme/my_theme.dart'; |
|
|
|
import 'package:shia_game_flutter/core/routers/my_routes.dart'; |
|
|
|
import 'package:shia_game_flutter/core/widgets/app_bar/styles/master_app_bar.dart'; |
|
|
|
import 'package:shia_game_flutter/core/widgets/app_bar/enums/app_bar_type.dart'; |
|
|
|
import 'package:shia_game_flutter/core/widgets/app_bar/my_app_bar.dart'; |
|
|
|
import 'package:shia_game_flutter/core/widgets/bottom_nav_bar/bottom_nav_bar.dart'; |
|
|
|
import 'package:shia_game_flutter/features/master/presentation/controller/master_controller.dart'; |
|
|
|
import 'package:get/get.dart'; |
|
|
|
@ -12,7 +14,10 @@ class MasterPage extends GetView<MasterController> { |
|
|
|
Widget build(BuildContext context) { |
|
|
|
return Scaffold( |
|
|
|
resizeToAvoidBottomInset: false, |
|
|
|
appBar: const MasterAppBar(), |
|
|
|
appBar: MyAppBar( |
|
|
|
type: AppBarType.master, |
|
|
|
backgroundColor: context.backgroundColor, |
|
|
|
), |
|
|
|
bottomNavigationBar: const BottomNavBar(), |
|
|
|
body: GetRouterOutlet( |
|
|
|
initialRoute: Routes.homePage, |
|
|
|
|