mirror of
https://github.com/revanced/revanced-manager.git
synced 2025-06-12 12:47:37 +02:00
fix: use single quotes instead of quotes as per Flutter standard
This commit is contained in:
@ -17,27 +17,27 @@ class ContributorsView extends StatelessWidget {
|
||||
child: Column(
|
||||
children: [
|
||||
ContributorsCard(
|
||||
title: "Patcher Contributors",
|
||||
title: 'Patcher Contributors',
|
||||
contributors: model.patcherContributors,
|
||||
height: 60,
|
||||
),
|
||||
ContributorsCard(
|
||||
title: "Patches Contributors",
|
||||
title: 'Patches Contributors',
|
||||
contributors: model.patchesContributors,
|
||||
height: 230,
|
||||
),
|
||||
ContributorsCard(
|
||||
title: "Integrations Contributors",
|
||||
title: 'Integrations Contributors',
|
||||
contributors: model.integrationsContributors,
|
||||
height: 230,
|
||||
),
|
||||
ContributorsCard(
|
||||
title: "CLI Contributors",
|
||||
title: 'CLI Contributors',
|
||||
contributors: model.cliContributors,
|
||||
height: 180,
|
||||
),
|
||||
ContributorsCard(
|
||||
title: "Manager Contributors",
|
||||
title: 'Manager Contributors',
|
||||
contributors: model.managerContributors,
|
||||
height: 130,
|
||||
),
|
||||
|
Reference in New Issue
Block a user