Entry の表示改善

This commit is contained in:
2024-09-08 21:18:45 +09:00
parent e6328f84b1
commit a22c2ea730
10 changed files with 321 additions and 18 deletions

View File

@ -11,6 +11,8 @@ class Entry {
final DateTime? date;
final int zekkenNumber; // 新しく追加
final String owner;
bool hasParticipated;
bool hasGoaled;
Entry({
required this.id,
@ -20,6 +22,8 @@ class Entry {
required this.date,
required this.zekkenNumber,
required this.owner,
this.hasParticipated = false,
this.hasGoaled = false,
});
factory Entry.fromJson(Map<String, dynamic> json) {