From 9877fa79f75e89db40b61d526a52b42a8015b775 Mon Sep 17 00:00:00 2001 From: Hillel Coren Date: Tue, 26 Nov 2019 10:58:27 +0200 Subject: [PATCH] Settings --- lib/ui/app/entity_dropdown.dart | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) 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(), ], ),