Skip to content

Instantly share code, notes, and snippets.

@hudahamid
hudahamid / dropdownexample.dart
Created January 20, 2022 10:15 — forked from vignarajj/dropdownexample.dart
Simple drop down example in flutter
import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
void main() => runApp(DropDownExample());
class DropDownExample extends StatefulWidget {
DropDownExample() : super();
final String title = "DropDown Demo";