multiple_search_selection 2.6.4 multiple_search_selection: ^2.6.4 copied to clipboard
A highly customizable multiple selection widget with fuzzy search functionality.
import 'package:example/examples/default_example.dart';
import 'package:flutter/gestures.dart';
import 'package:flutter/material.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({Key? key}) : super(key: key);
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Multiple Search Selection Example',
theme: ThemeData(
primarySwatch: Colors.blue,
),
scrollBehavior: ScrollConfiguration.of(context).copyWith(
dragDevices: {
PointerDeviceKind.touch,
PointerDeviceKind.mouse,
},
),
home: const MyHomePage(title: 'Multiple Search Selection Example'),
);
}
}
class MyHomePage extends StatefulWidget {
const MyHomePage({Key? key, required this.title}) : super(key: key);
final String title;
@override
State<MyHomePage> createState() => _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text(widget.title),
),
body: const SingleChildScrollView(
// physics: const NeverScrollableScrollPhysics(),
child: DefaultConstructorExample(),
), // This trailing comma makes auto-formatting nicer for build methods.
);
}
}