weight_dial_picker 0.0.4
weight_dial_picker: ^0.0.4 copied to clipboard
A customizable weight dial picker with kg/lb support
example/lib/main.dart
import 'package:flutter/material.dart';
import 'package:weight_dial_picker/weight_dial_picker.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
debugShowCheckedModeBanner: false,
home: Scaffold(
backgroundColor: Colors.black,
body: Center(
child: WeightDialPicker(
onChanged: (value, unit) {
},
),
),
),
);
}
}