Add user managemant page

This commit is contained in:
2024-05-28 05:06:03 +00:00
committed by GitHub
parent 10a8e80762
commit f06dc34c7e
16 changed files with 435 additions and 12 deletions

View File

@@ -39,6 +39,8 @@ class TaskPage extends StatefulWidget {
const TaskPage(this.id, {super.key});
final int id;
static const routeName = "/dialog/task/:id";
@override
State<StatefulWidget> createState() => _TaskPage();
}