Changes and Improvements
These are some of the changes in Version 01 of the application.
1. Adding Icons
- Added icons to the navigation bar widgets for better visual representation.
2. Disabling the Default Splash Screen
- Disabled the default splash screen for a more seamless user experience.
3. File Cleaning
- Organized and cleaned up project files for better code maintainability.
4. Folder Structure Change
- Restructured the folder organization for a more organized project:
- Created a
pages
directory for your page files. - Created a
widgets
directory for your custom widgets. - Moved the
AppBar
widgets into a subdirectory calledAppbar
within thewidgets
directory for better organization.
- Created a
5. Creating Two NavBar Widgets
- Created two separate navigation bar widgets for flexibility and reusability:
AppBarBack
: A navigation bar with a back button.AppBarSimple
: A simple navigation bar.
6. Changing Colors
- Customized the background colors of the navigation bars to match the project's design.
Updated Folder Structure
lib/
├── pages/
│ ├── author_page.dart
│ ├── blog.dart
│ ├── navgationbat.dart
│ ├── contact.dart
│ ├── home.dart
│ ├── services.dart
│ ├── splash.dart
│ ├── services.dart
│ ├── contact.dart
├── services/
│ ├── assignment.dart
│ ├── ml.dart
│ ├── mobile.dart
│ ├── web.dart
├── widgets/
│ ├── Appbar/
│ │ ├── app_bar_back.dart
│ │ └── app_bar_simple.dart
│ ├── service_boxes.dart
│ ├── WebView.dart
├── main.dart
---