started work on the flashcards

This commit is contained in:
Odweta
2026-03-23 12:27:55 +01:00
parent 1871dac2af
commit 3707bb0ea7
2 changed files with 32 additions and 3 deletions
+9 -2
View File
@@ -37,10 +37,17 @@ class ListPage extends StatelessWidget {
children: [
Center(
child: Padding(
padding: const EdgeInsets.all(Constants.edgeInset),
padding: const EdgeInsets.only(
left: Constants.edgeInset,
right: Constants.edgeInset,
top: Constants.edgeInset
),
child: Text(
'${Strings.allQuotesCount} $quoteCount',
style: TextStyle(fontSize: 18),
style: TextStyle(
fontSize: 18,
fontWeight: FontWeight.bold,
),
),
),
),