feat: add chips for patches selection.

This commit is contained in:
Aunali321
2022-11-23 09:48:10 +05:30
parent c5958f1257
commit 6e05120aa5
5 changed files with 58 additions and 22 deletions

View File

@ -67,7 +67,7 @@ class HomeView extends StatelessWidget {
const SizedBox(height: 8),
Row(
children: <Widget>[
DashboardChip(
CustomChip(
label: I18nText('homeView.installed'),
isSelected: !model.showUpdatableApps,
onSelected: (value) {
@ -75,7 +75,7 @@ class HomeView extends StatelessWidget {
},
),
const SizedBox(width: 10),
DashboardChip(
CustomChip(
label: I18nText('homeView.updatesAvailable'),
isSelected: model.showUpdatableApps,
onSelected: (value) {