number_selection 0.0.1 copy "number_selection: ^0.0.1" to clipboard
number_selection: ^0.0.1 copied to clipboard

outdated

A new Flutter package project.

Example #

Demo

How to use #

  • Import The number_selection.dart
import 'package:number_selection/number_selection.dart';
  • And here is the code of example
return Scaffold(
   backgroundColor: Colors.deepPurple[400],
   body: SafeArea(
     child: Column(
       mainAxisAlignment: MainAxisAlignment.spaceAround,
       children: <Widget>[
         Center(
           child: NumberSelection(
             initialValue: 1,
             minValue: -10,
             maxValue: 10,
             direction: Axis.vertical,
             withSpring: false,
             onChanged: (int value) => print("value: $value"),
           ),
         ),
         Center(
           child: NumberSelection(
             initialValue: 1,
             minValue: -1,
             maxValue: 10,
             direction: Axis.horizontal,
             withSpring: false,
             onChanged: (int value) => print("value: $value"),
           ),
         ),
       ],
     ),
   ),
 );
21
likes
30
pub points
78%
popularity

Publisher

unverified uploader

A new Flutter package project.

Repository (GitHub)
View/report issues

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on number_selection