made a small prototype with a navbar

This commit is contained in:
Odweta
2026-03-22 17:18:36 +01:00
parent ea85589767
commit 0219155f8e
15 changed files with 212 additions and 113 deletions
+13
View File
@@ -0,0 +1,13 @@
// quote model class
class Quote{
final int index;
final String author;
final String body;
const Quote({
required this.index,
required this.author,
required this.body,
});
}