multiple_search_selection 2.6.4 copy "multiple_search_selection: ^2.6.4" to clipboard
multiple_search_selection: ^2.6.4 copied to clipboard

A highly customizable multiple selection widget with fuzzy search functionality.

example/lib/main.dart

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.
    );
  }
}
49
likes
130
pub points
91%
popularity
screenshot

Publisher

verified publisheresentis.dev

A highly customizable multiple selection widget with fuzzy search functionality.

Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause (LICENSE)

Dependencies

flutter, lint

More

Packages that depend on multiple_search_selection