diff --git a/lib/ui/app/entity_dropdown.dart b/lib/ui/app/entity_dropdown.dart index c9de82398..1ef488519 100644 --- a/lib/ui/app/entity_dropdown.dart +++ b/lib/ui/app/entity_dropdown.dart @@ -243,11 +243,14 @@ class _EntityDropdownDialogState extends State { title: Row( children: [ 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(), ], ),