SkillAgentSearch skills...

NumberPicker

No description available

Install / Use

/learn @MarcinusX/NumberPicker
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

NumberPicker Build Status Coverage Status

NumberPicker is a custom widget designed for choosing an integer or decimal number by scrolling spinners.

ezgif com-gif-maker

Example:

(See example for more)

class _IntegerExample extends StatefulWidget {
  @override
  __IntegerExampleState createState() => __IntegerExampleState();
}

class __IntegerExampleState extends State<_IntegerExample> {
  int _currentValue = 3;

  @override
  Widget build(BuildContext context) {
    return Column(
      children: <Widget>[
        NumberPicker(
          value: _currentValue,
          minValue: 0,
          maxValue: 100,
          onChanged: (value) => setState(() => _currentValue = value),
        ),
        Text('Current value: $_currentValue'),
      ],
    );
  }
}

Related Skills

View on GitHub
GitHub Stars310
CategoryDevelopment
Updated1d ago
Forks144

Languages

Dart

Security Score

90/100

Audited on Apr 1, 2026

No findings