Skip to content

Commit

Permalink
Merge pull request #109 from tdiam/tdiam/fix-deps
Browse files Browse the repository at this point in the history
Fix build and dependencies
  • Loading branch information
prateekmedia authored Oct 23, 2023
2 parents fddb8f5 + 6daae3e commit 58a027b
Show file tree
Hide file tree
Showing 3 changed files with 213 additions and 268 deletions.
16 changes: 8 additions & 8 deletions lib/src/features/home/presentation/home/home_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -242,27 +242,27 @@ class _HomePageState extends ConsumerState<HomePage> {
),
appName: appName,
credits: [
AdwPreferencesGroup.credits(
AdwPreferencesGroup.creditsBuilder(
title: AppLocalizations.of(context)!.authors,
children:
List.generate(developers.length, (index) {
itemCount: developers.length,
itemBuilder: (_, index) {
var entry = developers[index];
return AdwActionRow(
title: entry.name,
onActivated: entry.url.launchIt,
);
}),
},
),
AdwPreferencesGroup.credits(
AdwPreferencesGroup.creditsBuilder(
title: "Translators",
children:
List.generate(translators.length, (index) {
itemCount: translators.length,
itemBuilder: (_, index) {
var entry = translators[index];
return AdwActionRow(
title: entry.name,
onActivated: entry.url.launchIt,
);
}),
},
),
],
appIcon: SvgPicture.network(
Expand Down
Loading

0 comments on commit 58a027b

Please sign in to comment.