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