still at the start of flashcards

This commit is contained in:
Odweta
2026-03-23 12:31:26 +01:00
parent 3707bb0ea7
commit 7e7c9ee472
+19 -2
View File
@@ -21,9 +21,26 @@ class FlashcardsPage extends StatelessWidget {
padding: const EdgeInsets.all(Constants.edgeInset),
child: Column(
mainAxisSize: MainAxisSize.min,
crossAxisAlignment: CrossAxisAlignment.start,
crossAxisAlignment: CrossAxisAlignment.center,
children: [
Text('insert random quote body here'),
Row(
mainAxisAlignment: MainAxisAlignment.center,
children: [
TextButton(
child: Text('flip around'),
onPressed: () {
// TODO: flip the card
},
),
TextButton(
child: Text('next card'),
onPressed: () {
// TODO: next random card
},
),
],
),
],
),
),