fix: use single quotes instead of quotes as per Flutter standard

This commit is contained in:
Alberto Ponces
2022-08-31 09:36:36 +01:00
parent 5a613a695e
commit 533f22924a
6 changed files with 13 additions and 13 deletions

View File

@ -92,7 +92,7 @@ class HomeView extends StatelessWidget {
Row(
children: [
DashboardChip(
label: "homeView.updatesAvailable",
label: 'homeView.updatesAvailable',
isSelected: model.showUpdatableApps,
onSelected: (value) {
model.toggleUpdatableApps(true);
@ -100,7 +100,7 @@ class HomeView extends StatelessWidget {
),
const SizedBox(width: 10),
DashboardChip(
label: "homeView.installed",
label: 'homeView.installed',
isSelected: !model.showUpdatableApps,
onSelected: (value) {
model.toggleUpdatableApps(false);