A Responsive Flutter Example Project Starter , BoilerPlate.
- flutter pub get
- flutter run
- Feature Responsive Content: Responsive for Main Content (List) and Side Content(Container).
- Feature Semi Dynamic Data: add or edit data content in lib/constants/data_dummy_content.dart.
- Feature Responsive Topbar: Responsive feature for buttons in Topbar and Navigation.
- Change row per screensize : go to lib/pages/home/hom_content.dart : line 45
crossAxisCount:
context.layout.value(
xs: 1, // one row if screen is xs
sm: 1,
md: 2,
lg: 2,
xl: 2, // two row if screen is xl
),
- Change color code in lib/constants/colors.dart
- Change class data in lib/model
- Task 1: Global State Management (Provider/GetX).
- Task 2: UI - add dialog popup for content detail.
- Task 3: Chart implementation.