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

