height_dial_picker 0.0.3 copy "height_dial_picker: ^0.0.3" to clipboard
height_dial_picker: ^0.0.3 copied to clipboard

A customizable height dial picker widget for Flutter with ft/cm support and smooth interaction.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:height_dial_picker/height_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(
        body: Center(
          child: HeightDialPicker(
            selectedColor: Colors.orange,
            backgroundColor: Colors.black,
            smallTickColor: Colors.grey,
            bigTickColor: Colors.white,
            centerLineColor: Colors.grey,
            selectedTickColor: Colors.blue,
            labelTextColor: Colors.white,
            onChanged: (value, unit) {},
          )
        ),
      ),
    );
  }
}
2
likes
150
points
144
downloads

Documentation

API reference

Publisher

unverified uploader

Weekly Downloads

A customizable height dial picker widget for Flutter with ft/cm support and smooth interaction.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on height_dial_picker