A Flutter widget offering a simple, customizable select list with a bottom sheet modal for user interactions.
Demo
Demo | Dismiss | Display |
Features
- Select input list widget.
- Dynamic modal height.
- Simple select input list with bottom sheet.
Getting started
In the pubspec.yaml of your flutter project, add the following dependency:
dependencies:
select_bottom_list: any
Import it:
import 'package:select_bottom_list/select_bottom_list.dart';
Usage
Basic select bottom list
SelectBottomList(
data: [],
selectedId: "",
selectedTitle: "",
isDisable: false,
onChange: (id, title) {
},
),