Skip to content

Instantly share code, notes, and snippets.

@lsgd
lsgd / calendar_date_box.dart
Created July 22, 2024 20:40
Display the current month and day in a calendar box
import 'package:flutter/material.dart';
class CalendarDateBox extends StatelessWidget {
CalendarDateBox({
super.key,
required this.month,
required this.day,
});
final String month;
final String day;