flutter_custom_month_picker 0.1.3
flutter_custom_month_picker: ^0.1.3 copied to clipboard
This package is designed to make it easy to use a month and year picker in Flutter with a fancy design.
import 'package:flutter/foundation.dart';
import 'package:flutter/material.dart';
import 'package:flutter_custom_month_picker/flutter_custom_month_picker.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: const MyHomePage(),
);
}
}
class MyHomePage extends StatefulWidget {
const MyHomePage({Key? key}) : super(key: key);
@override
State<MyHomePage> createState() => _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
int month = 3, year = 2023;
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text('Flutter Month Picker Demo'),
),
body: Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
ElevatedButton(
onPressed: () {
showMonthPicker(context, onSelected: (month, year) {
if (kDebugMode) {
print('Selected month: $month, year: $year');
}
setState(() {
this.month = month;
this.year = year;
});
},
initialSelectedMonth: month,
initialSelectedYear: year,
firstEnabledMonth: 3,
lastEnabledMonth: 10,
firstYear: 2000,
lastYear: 2025,
selectButtonText: 'OK',
cancelButtonText: 'Cancel',
highlightColor: Colors.purple,
textColor: Colors.black,
contentBackgroundColor: Colors.white,
dialogBackgroundColor: Colors.grey[200]);
},
child: const Text('Show Month Picker')),
Text('Selected month: $month, year: $year')
],
),
),
);
}
}
copied to clipboard