range_slider_dialog

Creator: coderz1093

Last updated:

0 purchases

TODO
Add to Cart

Description:

range slider dialog

flutter_range_slider_dialog Plugin #


Flutter Range Slider is a flutter package which shows a dialog with a RangeSlider within.

Data flow #

Invoke method RangeSliderDialog.display() to display RangeSlider dialog.
Select the desired range.
Click Accept button return the selected values and close the dialog.
Click Cancel button to close the dialog and discard the changes.

Getting Started #
1. Add library to your pubspec.yaml #

dependencies:
range_slider_dialog: ^0.0.1

copied to clipboard
2. Import library in dart file #
import 'package:range_slider_dialog/range_slider_dialog.dart';
copied to clipboard
3. Example of use #
await RangeSliderDialog.display<int>(context,
minValue: minPeople ?? 1,
maxValue: maxPeople ?? 40,
acceptButtonText: 'ACEPTAR',
cancelButtonText: 'CANCELAR',
headerText: 'Gente en el plan',
selectedRangeValues: defaultValue, onApplyButtonClick: (value) {
print('SHOW PEOPLE DIALOG');
print(value);
callback(value);
Navigator.pop(context);
});
copied to clipboard
Parameters #



Parameter
Type
Description




height
double
Set height of filter dialog.


width
double
Set width of filter dialog.


hideheader
bool
Hide the header


minValue
int
Start range value. Default to 0.


maxValue
int
End range value. Default to 40.


headerText
String?
Custom header text. Default 'Select a range'


cancelButtonText
String?
The text of the cancel button. Default 'CANCEL'


acceptButtonText
String?
The text of the accept button. Default 'ACCEPT'


onApplyButtonClick
Function(RangeValues? selectedValues)
Return the choosen RangeValues



Contributions #
Feel free to contribute to this project.
If you find a bug or want a feature, but don't know how to fix/implement it, please fill an issue.
If you fixed a bug or implemented a feature, please send a pull request.

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files:

Customer Reviews

There are no reviews.