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

Picker Whell Flutter plugin.

example/lib/main.dart

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

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

class MyApp extends StatefulWidget {
  @override
  _MyAppState createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      debugShowCheckedModeBanner: false,
      home: Scaffold(
        appBar: AppBar(
          elevation: 50,
          centerTitle: true,
          backgroundColor: Colors.teal,
          title: const Text('Picker Whell'),
        ),
        body: Center(
          child: PickerWhell(
            itemCount: 100,
            itemWidth: 50,
          )
        ),
      ),
    );
  }
}
7
likes
110
pub points
0%
popularity

Publisher

unverified uploader

Picker Whell Flutter plugin.

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on picker_whell