multi_select_bottom_sheet 0.0.1 multi_select_bottom_sheet: ^0.0.1 copied to clipboard
to be able to show a custom multi select bottomsheet easly.
Simple and easy to use flutter Widget to add a multiSelectBottomSheet to your Flutter Application.This Widget allows you to search and select from list of suggestions.
Getting Started
Installation
1.Add the dependency
flutter pub add MultiSelectBottomSheet
2.Import the package
import 'package:MultiSelectBottomSheet/MultiSelectBottomSheet.dart';
3.Use the Widget
CustomMultiSelectBottomSheet can be used in the builder of MultiSelectBottomSheet().
Example:
MultiSelectBottomSheet( items:selectCountryItem , width: width*0.96, hint: "select country", ),