https://github.com/manojkulkarni30/flutter-dropdownmenu-widget
A small Flutter demo showing how to add a dropdown list using Material 3's DropdownMenu widget.
https://github.com/manojkulkarni30/flutter-dropdownmenu-widget
dropdown-menu flutter material3-components
Last synced: 29 days ago
JSON representation
A small Flutter demo showing how to add a dropdown list using Material 3's DropdownMenu widget.
- Host: GitHub
- URL: https://github.com/manojkulkarni30/flutter-dropdownmenu-widget
- Owner: manojkulkarni30
- Created: 2026-03-14T15:13:13.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2026-03-20T07:53:02.000Z (3 months ago)
- Last Synced: 2026-03-21T00:40:05.672Z (3 months ago)
- Topics: dropdown-menu, flutter, material3-components
- Language: Dart
- Homepage: https://bit.ly/3PcnV1E
- Size: 40 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# flutter_dropdownlist_demo
A small Flutter demo showing how to add a dropdown list using Material 3's dropdown widgets.
## Video Tutorial
- Tutorial video: https://bit.ly/3PcnV1E
- Channel: https://bit.ly/41Ryons
## Overview
This repository demonstrates how to implement dropdowns in Flutter using Material 3's `DropdownMenu` widget
## Documentation
- `DropdownMenu` — https://api.flutter.dev/flutter/material/DropdownMenu-class.html
- `DropdownButton` — https://api.flutter.dev/flutter/material/DropdownButton-class.html
## Getting Started
1. Install Flutter: https://docs.flutter.dev/get-started/install
2. From the project root run:
```bash
flutter pub get
flutter run
```
## Notes
- The demo targets Material 3. To enable Material 3, set `useMaterial3: true` in your app theme:
```dart
MaterialApp(
theme: ThemeData(useMaterial3: true),
home: const MyHomePage(),
);
```