A comprehensive Flutter application showcasing various widget examples organized by category.
This app demonstrates examples of:
- Basic Widgets - Text, Image, Container, Row, Column, Icon, Card, SizedBox, Expanded
- Forms - TextFields, Checkboxes, Radio buttons, Dropdowns, Sliders
- Actions - Buttons, Gestures, Switches, Toggle buttons, Action chips
- Alerts & Dialogs - AlertDialog, SnackBar, BottomSheet, Date/Time pickers
- Lists - ListView, GridView, ListTile, ExpansionTile
- Flutter SDK (>=3.0.0)
- Dart SDK
- Clone or download this project
- Navigate to the project directory
- Get dependencies:
flutter pub get
flutter runlib/
├── main.dart # App entry point
├── screens/
│ └── home_screen.dart # Home screen with navigation
└── examples/
├── basic_widgets/
│ └── basic_widgets_screen.dart
├── forms/
│ └── forms_screen.dart
├── actions/
│ └── actions_screen.dart
├── alerts_dialogs/
│ └── alerts_dialogs_screen.dart
└── lists/
└── lists_screen.dart
- Launch the app
- Navigate through different categories from the home screen
- Explore various widget examples in each category
- Interact with the widgets to see their behavior
This project is open source and available for learning purposes.