reactive_sleek_circular_slider 0.0.3
reactive_sleek_circular_slider: ^0.0.3 copied to clipboard
Wrapper around sleek_circular_slider to use with reactive_forms
example/lib/main.dart
import 'package:flutter/material.dart';
import 'package:reactive_forms/reactive_forms.dart';
import 'package:reactive_sleek_circular_slider/reactive_sleek_circular_slider.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
FormGroup buildForm() => fb.group({
'input': FormControl<double>(value: 10),
});
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
// This is the theme of your application.
//
// Try running your application with "flutter run". You'll see the
// application has a blue toolbar. Then, without quitting the app, try
// changing the primarySwatch below to Colors.green and then invoke
// "hot reload" (press "r" in the console where you ran "flutter run",
// or simply save your changes to "hot reload" in a Flutter IDE).
// Notice that the counter didn't reset back to zero; the application
// is not restarted.
primarySwatch: Colors.blue,
// This makes the visual density adapt to the platform that you run
// the app on. For desktop platforms, the controls will be smaller and
// closer together (more dense) than on mobile platforms.
visualDensity: VisualDensity.adaptivePlatformDensity,
),
home: Scaffold(
body: SafeArea(
child: SingleChildScrollView(
physics: BouncingScrollPhysics(),
padding: const EdgeInsets.symmetric(
horizontal: 20.0,
vertical: 20.0,
),
child: ReactiveFormBuilder(
form: buildForm,
builder: (context, form, child) {
return Column(
children: [
ReactiveSleekCircularSlider<double>(
formControlName: 'input',
// appearance: CircularSliderAppearance(animationEnabled: false),
min: 5,
max: 100,
heightFactor: 0.78,
alignment: Alignment.topCenter,
decoration: InputDecoration(
border: OutlineInputBorder(),
contentPadding: EdgeInsets.fromLTRB(12, 12, 0, 0),
labelText: "Search amount",
helperText: '',
),
),
ReactiveSleekCircularSlider<double>(
formControlName: 'input',
// appearance: CircularSliderAppearance(animationEnabled: false),
min: 5,
max: 100,
heightFactor: 0.78,
alignment: Alignment.topCenter,
decoration: InputDecoration(
border: InputBorder.none,
contentPadding: EdgeInsets.fromLTRB(0, 0, 0, 0),
),
),
SizedBox(height: 16),
ElevatedButton(
child: Text('Sign Up'),
onPressed: () {
if (form.valid) {
print(form.value);
} else {
form.markAllAsTouched();
}
},
),
],
);
},
),
),
),
),
);
}
}