drop_down_selector 0.0.6 copy "drop_down_selector: ^0.0.6" to clipboard
drop_down_selector: ^0.0.6 copied to clipboard

A package to select single or multiple items from list of items and can search items.

Platforms This package is successfully tested in Android,iOS.

 class MyHomePage extends StatelessWidget {
  const MyHomePage({super.key});

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: const Text("Flutter Demo Home Page"),
      ),
      body: Center(
        child: Column(
          mainAxisAlignment: MainAxisAlignment.center,
          children: [
            const Text(
              'Search Items and Select',
            ),
            const SizedBox(
              height: 10,
            ),
            DropDownSelector(
              listOfItems: const [
                "1",
                "2",
                "3",
                "4",
                "5",
                "6"
              ],
              title: "Select Items",
              onChanged: (List list) {
                //selected items from the list will get here.
              },
            ),
          ],
        ),
      ),
    );
  }
}

21
likes
130
pub points
59%
popularity

Publisher

unverified uploader

A package to select single or multiple items from list of items and can search items.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on drop_down_selector