select2dot1 0.0.1 copy "select2dot1: ^0.0.1" to clipboard
select2dot1: ^0.0.1 copied to clipboard

outdated

Select2dot1 gives you a customizable select box with single and multiple selection that will work with search. Also available group option.

example/lib/main.dart

import 'package:example/screens/basic_view.dart';
import 'package:example/screens/custom_view.dart';
import 'package:example/screens/menu.dart';
import 'package:flutter/material.dart';

void main() {
  runApp(const MyApp());
}

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

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Select2dot1 Example',
      initialRoute: Menu.routeName,
      routes: <String, WidgetBuilder>{
        Menu.routeName: (context) => const Menu(),
        BasicView.routeName: (context) => const BasicView(),
        CustomView.routeName: (context) => const CustomView(),
      },
    );
  }
}
45
likes
0
points
319
downloads

Publisher

verified publisherromanjrdykyj.site

Weekly Downloads

Select2dot1 gives you a customizable select box with single and multiple selection that will work with search. Also available group option.

Homepage
Repository (GitHub)
View/report issues

Funding

Consider supporting this project:

www.buymeacoffee.com

License

unknown (license)

Dependencies

flutter

More

Packages that depend on select2dot1