Settings
This commit is contained in:
parent
b81e4c64d0
commit
9877fa79f7
|
|
@ -243,11 +243,14 @@ class _EntityDropdownDialogState extends State<EntityDropdownDialog> {
|
|||
title: Row(
|
||||
children: <Widget>[
|
||||
Expanded(
|
||||
child: Text(entity.listDisplayName),
|
||||
child: Text(entity.listDisplayName,
|
||||
style: Theme.of(context).textTheme.title),
|
||||
),
|
||||
entity.listDisplayAmount != null
|
||||
? Text(formatNumber(entity.listDisplayAmount, context,
|
||||
formatNumberType: entity.listDisplayAmountType))
|
||||
? Text(
|
||||
formatNumber(entity.listDisplayAmount, context,
|
||||
formatNumberType: entity.listDisplayAmountType),
|
||||
style: Theme.of(context).textTheme.title)
|
||||
: Container(),
|
||||
],
|
||||
),
|
||||
|
|
|
|||
Loading…
Reference in New Issue