still at the start of flashcards
This commit is contained in:
@@ -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
|
||||
},
|
||||
),
|
||||
],
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
|
||||
Reference in New Issue
Block a user