dark Theme and 18 other changes done
This commit is contained in:
@@ -42,7 +42,9 @@ class TransactionDetailsScreen extends StatelessWidget {
|
||||
isCredit
|
||||
? Symbols.call_received
|
||||
: Symbols.call_made,
|
||||
color: isCredit ? Colors.green : Colors.red,
|
||||
color: isCredit
|
||||
? Theme.of(context).colorScheme.secondary
|
||||
: Theme.of(context).colorScheme.error,
|
||||
size: 28,
|
||||
),
|
||||
],
|
||||
@@ -51,9 +53,9 @@ class TransactionDetailsScreen extends StatelessWidget {
|
||||
// Date centered
|
||||
Text(
|
||||
transaction.date ?? "",
|
||||
style: const TextStyle(
|
||||
style: TextStyle(
|
||||
fontSize: 16,
|
||||
color: Colors.grey,
|
||||
color: Theme.of(context).textTheme.bodySmall?.color,
|
||||
),
|
||||
textAlign: TextAlign.center,
|
||||
),
|
||||
@@ -61,7 +63,7 @@ class TransactionDetailsScreen extends StatelessWidget {
|
||||
),
|
||||
),
|
||||
),
|
||||
const Divider(),
|
||||
Divider(color: Theme.of(context).dividerColor),
|
||||
Expanded(
|
||||
flex: 5,
|
||||
child: ListView(
|
||||
|
||||
Reference in New Issue
Block a user