month_picker_dialog 4.0.0 month_picker_dialog: ^4.0.0 copied to clipboard
Internationalized dialog for picking a single month from an infinite list of years.
import 'package:flutter/material.dart';
import 'package:flutter_localizations/flutter_localizations.dart';
import 'package:month_picker_dialog/month_picker_dialog.dart';
void main() => runApp(
MyApp(
initialDate: DateTime.now(),
),
);
class MyApp extends StatefulWidget {
const MyApp({super.key, required this.initialDate});
final DateTime initialDate;
@override
State<MyApp> createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
DateTime? selectedDate;
@override
void initState() {
super.initState();
selectedDate = widget.initialDate;
}
@override
Widget build(BuildContext context) {
// return CupertinoApp(
return MaterialApp(
localizationsDelegates: const <LocalizationsDelegate<dynamic>>[
GlobalMaterialLocalizations.delegate,
GlobalWidgetsLocalizations.delegate,
GlobalCupertinoLocalizations.delegate,
],
supportedLocales: const <Locale>[
Locale('en'),
Locale('zh'),
Locale('fr'),
Locale('es'),
Locale('de'),
Locale('ru'),
Locale('ja'),
Locale('ar'),
Locale('fa'),
Locale('es'),
Locale('it'),
],
theme: ThemeData(
colorScheme: ColorScheme.fromSwatch(primarySwatch: Colors.indigo)
.copyWith(secondary: Colors.pinkAccent),
//Changing the global dialog border
dialogTheme: const DialogTheme(
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.all(
Radius.circular(20),
),
side: BorderSide(color: Colors.red),
),
),
),
// theme: CupertinoThemeData(primaryColor: Colors.indigo),
home: Scaffold(
appBar: AppBar(
title: const Text('Month Picker Example App'),
),
body: Center(
child: Text(
'Year: ${selectedDate?.year}\nMonth: ${selectedDate?.month}',
style: Theme.of(context).textTheme.headlineMedium,
textAlign: TextAlign.center,
),
),
floatingActionButton: Builder(
builder: (BuildContext context) => FloatingActionButton(
onPressed: () {
/* showMonthPicker(
context: context,
firstDate: DateTime(DateTime.now().year - 5, 5),
lastDate: DateTime(DateTime.now().year + 8, 9),
initialDate: selectedDate ?? widget.initialDate,
locale: const Locale('en'),
//show only even months
selectableMonthPredicate: (DateTime val) => val.month.isEven,
monthStylePredicate: (DateTime val) {
if (val.month == 4) {
return TextButton.styleFrom(
backgroundColor: Colors.yellow[700],
textStyle: const TextStyle(
color: Colors.pink,
fontWeight: FontWeight.bold,
),
);
}
return null;
},
yearStylePredicate: (int val) {
if (val == 2022) {
return TextButton.styleFrom(
backgroundColor: Colors.yellow[700],
textStyle: const TextStyle(
color: Colors.pink,
fontWeight: FontWeight.bold,
),
);
}
return null;
},
headerColor: Colors.indigo[300],
headerTextColor: Colors.black,
selectedMonthBackgroundColor: Colors.amber[900],
selectedMonthTextColor: Colors.white,
unselectedMonthTextColor: Colors.black,
currentMonthTextColor: Colors.green,
confirmWidget: Text(
'This one!',
style: TextStyle(
fontWeight: FontWeight.bold,
color: Colors.indigo[300],
),
),
cancelWidget: Text(
'Cancel',
style: TextStyle(
fontWeight: FontWeight.bold,
color: Colors.red[900],
),
),
roundedCornersRadius: 20,
yearFirst: false,
backgroundColor: Colors.blueGrey[50],
buttonBorder: const RoundedRectangleBorder(),
headerTitle: const Text('Month Picker Dialog'),
// customDivider: Divider(
// color: Colors.black,
// endIndent: 25,
// indent: 25,
// ),
// forcePortrait: true,
//forceSelectedDate: true,
//dismissible: true,
// capitalizeFirstLetter: true,
// customHeight: 500,
// customWidth: 500,
// dismissible: true,
// forceSelectedDate: true,
// animationMilliseconds: 300
//hideHeaderRow: true
).then((DateTime? date) {
if (date != null) {
setState(() {
selectedDate = date;
});
}
}); */
showMonthRangePicker(
context: context,
firstDate: DateTime(DateTime.now().year - 5, 5),
lastDate: DateTime(DateTime.now().year + 8, 9),
initialDate: selectedDate ?? widget.initialDate,
locale: const Locale('en'),
headerColor: Colors.indigo[300],
headerTextColor: Colors.black,
selectedMonthBackgroundColor: Colors.amber[900],
selectedMonthTextColor: Colors.white,
unselectedMonthTextColor: Colors.black,
currentMonthTextColor: Colors.green,
confirmWidget: Text(
'This one!',
style: TextStyle(
fontWeight: FontWeight.bold,
color: Colors.indigo[300],
),
),
cancelWidget: Text(
'Cancel',
style: TextStyle(
fontWeight: FontWeight.bold,
color: Colors.red[900],
),
),
roundedCornersRadius: 20,
yearFirst: false,
backgroundColor: Colors.blueGrey[50],
buttonBorder: const RoundedRectangleBorder(),
headerTitle: const Text('Month Picker Dialog'),
// customDivider: Divider(
// color: Colors.black,
// endIndent: 25,
// indent: 25,
// ),
// forcePortrait: true,
//forceSelectedDate: true,
//dismissible: true,
// capitalizeFirstLetter: true,
// customHeight: 500,
// customWidth: 500,
// dismissible: true,
// forceSelectedDate: true,
// animationMilliseconds: 300
//hideHeaderRow: true
rangeList: true)
.then((List<DateTime>? dates) {
if (dates != null) {
print(dates);
print(dates.last.lastDayOfMonth());
}
});
},
child: const Icon(Icons.calendar_today),
),
),
),
);
}
}