fix: make inkwells visible (#205)

This commit is contained in:
Unknown
2022-09-19 18:55:44 +02:00
committed by GitHub
parent efcf455b24
commit 530dd78752
8 changed files with 349 additions and 317 deletions

View File

@ -88,16 +88,14 @@ class _AppSelectorViewState extends State<AppSelectorView> {
child: Column(
children: model
.getFilteredApps(_query)
.map((app) => InkWell(
.map((app) => InstalledAppItem(
name: app.appName,
pkgName: app.packageName,
icon: app.icon,
onTap: () {
model.selectApp(app);
Navigator.of(context).pop();
},
child: InstalledAppItem(
name: app.appName,
pkgName: app.packageName,
icon: app.icon,
),
))
.toList(),
),