horizontal_week_calendar 0.0.10 horizontal_week_calendar: ^0.0.10 copied to clipboard
A horizontal week calender with on change week and on date selected function
import 'package:flutter/material.dart';
// import 'package:horizontal_week_calendar/horizontal_week_calendar.dart';
import 'package:intl/intl.dart';
import 'package:packages_test/horizotal_week_calendar/horizontal_week_calendar.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Packages Test',
theme: ThemeData(
primarySwatch: Colors.purple,
),
home: const HorizontalWeekCalendarPackage(),
);
}
}
class HorizontalWeekCalendarPackage extends StatefulWidget {
const HorizontalWeekCalendarPackage({super.key});
@override
State<HorizontalWeekCalendarPackage> createState() =>
_HorizontalWeekCalendarPackageState();
}
class _HorizontalWeekCalendarPackageState
extends State<HorizontalWeekCalendarPackage> {
var selectedDate = DateTime.now();
@override
Widget build(BuildContext context) {
var theme = Theme.of(context);
return Scaffold(
appBar: AppBar(
backgroundColor: Colors.purple,
title: const Text(
"Horizontal Week Calendar",
),
),
body: SafeArea(
child: Padding(
padding: const EdgeInsets.all(10),
child: Column(
children: [
HorizontalWeekCalendar(
weekStartFrom: WeekStartFrom.Monday,
activeBackgroundColor: Colors.purple,
activeTextColor: Colors.white,
inactiveBackgroundColor: Colors.purple.withOpacity(.3),
inactiveTextColor: Colors.white,
disabledTextColor: Colors.grey,
disabledBackgroundColor: Colors.grey.withOpacity(.3),
activeNavigatorColor: Colors.purple,
inactiveNavigatorColor: Colors.grey,
monthColor: Colors.purple,
onDateChange: (date) {
setState(() {
selectedDate = date;
});
},
),
Expanded(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
crossAxisAlignment: CrossAxisAlignment.center,
children: [
Text(
"Selected Date",
textAlign: TextAlign.center,
style: theme.textTheme.titleMedium!.copyWith(
color: theme.primaryColor,
),
),
const SizedBox(height: 3),
Text(
DateFormat('dd MMM yyyy').format(selectedDate),
textAlign: TextAlign.center,
style: theme.textTheme.titleLarge!.copyWith(
color: theme.primaryColor,
),
),
],
),
),
],
),
),
),
);
}
}