reactive_range_slider 2.1.0 reactive_range_slider: ^2.1.0 copied to clipboard
Wrapper around RangeSlider to use with reactive_forms.
import 'package:flutter/material.dart';
import 'package:reactive_forms/reactive_forms.dart';
import 'package:reactive_range_slider/reactive_range_slider.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
FormGroup buildForm() => fb.group({
'input': FormControl<RangeValues>(value: const RangeValues(0, 10)),
});
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
primarySwatch: Colors.blue,
visualDensity: VisualDensity.adaptivePlatformDensity,
),
home: Scaffold(
body: SafeArea(
child: SingleChildScrollView(
physics: const BouncingScrollPhysics(),
padding: const EdgeInsets.symmetric(
horizontal: 20.0,
vertical: 20.0,
),
child: ReactiveFormBuilder(
form: buildForm,
builder: (context, form, child) {
return Column(
children: [
ReactiveRangeSlider<RangeValues>(
formControlName: 'input',
min: 0,
max: 100,
divisions: 5,
labelBuilder: (values) => RangeLabels(
values.start.round().toString(),
values.end.round().toString(),
),
decoration: const InputDecoration(
border: InputBorder.none,
contentPadding: EdgeInsets.fromLTRB(0, 0, 0, 0),
),
// step: 5,
// textStyle: const TextStyle(fontSize: 18),
// decoration: InputDecoration(
// border: OutlineInputBorder(),
// contentPadding: EdgeInsets.fromLTRB(12, 12, 0, 0),
// labelText: "Search amount",
// helperText: '',
// ),
),
const SizedBox(height: 16),
ElevatedButton(
child: const Text('Sign Up'),
onPressed: () {
if (form.valid) {
// ignore: avoid_print
print(form.value);
} else {
form.markAllAsTouched();
}
},
),
],
);
},
),
),
),
),
);
}
}