select_bottom_list 1.0.0 select_bottom_list: ^1.0.0 copied to clipboard
A simple fully customisable select input list.
A simple fully customisable select input list.
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
SelectBottomMenu(
data: [],
selectedId: "",
selectedTitle: "",
isDisable: false,
onChange: (id, title) {
},
),