feat:更新记录页面模块

This commit is contained in:
2025-07-06 19:04:30 +08:00
parent bb6874582f
commit ab00d6726f
12 changed files with 518 additions and 165 deletions

View File

@@ -0,0 +1,23 @@
import 'package:flutter/material.dart';
import 'package:table_calendar/table_calendar.dart';
class RecipeCalendar extends StatelessWidget {
const RecipeCalendar({super.key});
@override
Widget build(BuildContext context) {
return Column(
children: [
Card(
elevation: 0,
color: Colors.white,
child: TableCalendar(
firstDay: DateTime.utc(2010, 10, 16),
lastDay: DateTime.utc(2030, 3, 14),
focusedDay: DateTime.now(),
),
),
],
);
}
}