diff --git a/lib/ui/app/tables/entity_list.dart b/lib/ui/app/tables/entity_list.dart index 395ceaebd..03fd4fd43 100644 --- a/lib/ui/app/tables/entity_list.dart +++ b/lib/ui/app/tables/entity_list.dart @@ -232,7 +232,7 @@ class _EntityListState extends State { child: AnimatedContainer( padding: const EdgeInsets.symmetric(horizontal: 10), color: Theme.of(context).cardColor, - height: isInMultiselect ? 46 : 0, + height: isInMultiselect ? kTopBottomBarHeight : 0, duration: Duration(milliseconds: kDefaultAnimationDuration), curve: Curves.easeInOutCubic, child: AnimatedOpacity( diff --git a/lib/utils/i18n.dart b/lib/utils/i18n.dart index 71b67e19f..9ff0b80f5 100644 --- a/lib/utils/i18n.dart +++ b/lib/utils/i18n.dart @@ -15,6 +15,7 @@ mixin LocalizationsProvider on LocaleCodeAware { static final Map> _localizedValues = { 'en': { // STARTER: lang key - do not remove comment + 'payment_type_id': 'Payment Type', 'last_login_at': 'Last Login At', 'company_key': 'Company Key', 'storefront': 'Storefront', @@ -38996,6 +38997,9 @@ mixin LocalizationsProvider on LocaleCodeAware { String get lastLoginAt => _localizedValues[localeCode]['last_login_at'] ?? ''; + String get paymenTypeId => + _localizedValues[localeCode]['payment_type_id'] ?? ''; + String lookup(String key) { final lookupKey = toSnakeCase(key);