simple_month_year_picker 1.0.1 copy "simple_month_year_picker: ^1.0.1" to clipboard
simple_month_year_picker: ^1.0.1 copied to clipboard

Simple to use month/year picker for your apps with highly customisable options.

example/lib/main.dart

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

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

class MyApp extends StatelessWidget {
  const MyApp({Key? key}) : super(key: key);

  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Simple Month Picker Example',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: const MyHomePage(),
    );
  }
}

class MyHomePage extends StatelessWidget {
  const MyHomePage({Key? key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: const Text('SimpleMonthYearPicker example'),
      ),
      body: Column(
        mainAxisAlignment: MainAxisAlignment.center,
        children: [
          Center(
            child: ElevatedButton(
              onPressed: () async {
                await SimpleMonthYearPicker.showMonthYearPickerDialog(
                  context: context,
                  barrierDismissible: true,
                );
              },
              child: const Text('show dialog'),
            ),
          )
        ],
      ),
    );
  }
}
7
likes
0
points
519
downloads

Publisher

verified publishersivaprasadnk.dev

Weekly Downloads

Simple to use month/year picker for your apps with highly customisable options.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on simple_month_year_picker