weekview_calendar 0.0.9 weekview_calendar: ^0.0.9 copied to clipboard
Customizable, feature-packed Week view calendar widget for Flutter.
import 'package:flutter/material.dart';
import 'package:intl/date_symbol_data_local.dart';
import 'pages/basics_example.dart';
import 'pages/complex_example.dart';
import 'pages/events_example.dart';
import 'pages/multi_example.dart';
import 'pages/range_example.dart';
void main() {
initializeDateFormatting().then((_) => runApp(MyApp()));
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'WeekView Calendar Example',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: StartPage(),
);
}
}
class StartPage extends StatefulWidget {
@override
_StartPageState createState() => _StartPageState();
}
class _StartPageState extends State<StartPage> {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text('WeekView Calendar Example'),
),
body: Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
const SizedBox(height: 20.0),
ElevatedButton(
child: Text('Basics'),
onPressed: () => Navigator.push(
context,
MaterialPageRoute(builder: (_) => WeekViewBasicsExample()),
),
),
const SizedBox(height: 12.0),
ElevatedButton(
child: Text('Range Selection'),
onPressed: () => Navigator.push(
context,
MaterialPageRoute(builder: (_) => WeekViewRangeExample()),
),
),
const SizedBox(height: 12.0),
ElevatedButton(
child: Text('Events'),
onPressed: () => Navigator.push(
context,
MaterialPageRoute(builder: (_) => WeekViewEventsExample()),
),
),
const SizedBox(height: 12.0),
ElevatedButton(
child: Text('Multiple Selection'),
onPressed: () => Navigator.push(
context,
MaterialPageRoute(builder: (_) => WeekViewMultiExample()),
),
),
const SizedBox(height: 12.0),
ElevatedButton(
child: Text('Complex'),
onPressed: () => Navigator.push(
context,
MaterialPageRoute(builder: (_) => WeekViewComplexExample()),
),
),
const SizedBox(height: 20.0),
],
),
),
);
}
}