simple_table_calendar 0.0.1 copy "simple_table_calendar: ^0.0.1" to clipboard
simple_table_calendar: ^0.0.1 copied to clipboard

A Flutter package to provide a simple table calendar with custom styling.

example/lib/main.dart

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

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

class MainApp extends StatelessWidget {
  const MainApp({super.key});

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        body: Center(
            child: TableCalender(
          firstDay: DateTime(2021, 1, 1),
          lastDay: DateTime(2021, 12, 31),
          selectedDay: DateTime(2021, 1, 1),
          onDaySelected: (DateTime day) => print(day),
        )),
      ),
    );
  }
}
1
likes
0
points
6
downloads

Publisher

unverified uploader

Weekly Downloads

A Flutter package to provide a simple table calendar with custom styling.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter, intl

More

Packages that depend on simple_table_calendar