From 1f64ea37bd2d6635533d5a40be432470da021ad0 Mon Sep 17 00:00:00 2001 From: Aunali321 Date: Mon, 12 Jun 2023 06:59:43 +0530 Subject: [PATCH] fix: using wrong string --- lib/ui/views/app_selector/app_selector_view.dart | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/ui/views/app_selector/app_selector_view.dart b/lib/ui/views/app_selector/app_selector_view.dart index 2f6ddda2..42ff13e7 100644 --- a/lib/ui/views/app_selector/app_selector_view.dart +++ b/lib/ui/views/app_selector/app_selector_view.dart @@ -78,7 +78,7 @@ class _AppSelectorViewState extends State { child: model.noApps ? Center( child: I18nText( - 'appSelectorView.noAppsLabel', + 'appSelectorCard.noAppsLabel', child: Text( '', style: TextStyle( @@ -112,7 +112,8 @@ class _AppSelectorViewState extends State { app.packageName, ), installedVersion: app.versionName!, - onTap: () => model.canSelectInstalled(context, app.packageName), + onTap: () => model.canSelectInstalled( + context, app.packageName), ), ) .toList(),