Created
September 19, 2022 00:20
-
-
Save VB10/799b01426622f878002e74e6a5fefdec to your computer and use it in GitHub Desktop.
Seperate Scaffold
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:flutter/material.dart'; | |
part 'module/home_appbar.dart'; | |
part 'module/home_body.dart'; | |
part 'module/home_bottom_bar.dart'; | |
class HomeView extends StatelessWidget { | |
const HomeView({super.key}); | |
@override | |
Widget build(BuildContext context) { | |
return const Scaffold( | |
appBar: _HomeAppBar(), | |
body: _HomeBody(), | |
bottomNavigationBar: _HomeBottomBar(), | |
); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment