mirror of
https://github.com/revanced/revanced-manager.git
synced 2025-06-12 04:37:37 +02:00
fix: use single quotes instead of quotes as per Flutter standard
This commit is contained in:
@ -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);
|
||||
|
Reference in New Issue
Block a user