This commit is contained in:
Hillel Coren 2019-11-26 10:58:27 +02:00
parent b81e4c64d0
commit 9877fa79f7
1 changed files with 6 additions and 3 deletions

View File

@ -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(),
], ],
), ),