uistepper 0.0.2 copy "uistepper: ^0.0.2" to clipboard
uistepper: ^0.0.2 copied to clipboard

A widget for incrementing or decrementing a value by using +/- buttons. This is a Flutter implementation of the UIStepper control found in Apple iOS UIKit.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:uistepper/uistepper.dart';

void main() {
  runApp(MyApp());
}

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: Scaffold(
        body: Center(
          child: UIStepper(value: 12, onChanged: (value) {})
        )
      )
    );
  }
}
5
likes
90
pub points
17%
popularity

Publisher

unverified uploader

A widget for incrementing or decrementing a value by using +/- buttons. This is a Flutter implementation of the UIStepper control found in Apple iOS UIKit.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on uistepper