Last updated:
0 purchases
flutter textfield dropdown
my_package #
A Flutter package that combines a TextField and DropdownButton.
Installation #
Add my_package to your pubspec.yaml file:
How to use #
SwitchListTile(
title: Text('Show Dropdown'),
value: _showDropdown,
onChanged: (value) {
setState(() {
_showDropdown = value;
});
},
);
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.