drop_down_with_search 0.0.1
drop_down_with_search: ^0.0.1 copied to clipboard
Plugin which has custom dropdown with on text change search option.
import 'package:flutter/material.dart';
import 'getDropDown.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: const MyHomePage(title: 'Flutter Demo Home Page'),
);
}
}
class MyHomePage extends StatefulWidget {
const MyHomePage({super.key, required this.title});
final String title;
@override
State<MyHomePage> createState() => _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
TextEditingController myController = TextEditingController();
@override
void initState() {
// TODO: implement initState
super.initState();
}
void _incrementCounter() {
}
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text("Dropdown"),
),
body: Padding(
padding: EdgeInsets.symmetric(horizontal: 20),
child: DropDownWithSearch(
textController: myController,
inputItem: ["Mumbai", "Chennai", "Maharastra", "Karnataka"],
),
),
floatingActionButton: FloatingActionButton(
onPressed: _incrementCounter,
tooltip: 'Increment',
child: const Icon(Icons.add),
), // This trailing comma makes auto-formatting nicer for build methods.
);
}
getDropDown() {}
}