Initial commit

This commit is contained in:
brausjonas
2024-09-15 17:03:37 +02:00
commit 8740525457
42 changed files with 1515 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
import 'package:flutter/material.dart';
import 'package:todoapp/elems/todo.dart';
class TodoList {
TodoList({required this.title, required this.widget, required this.todos});
String title;
Widget widget;
List<Todo> todos;
}