Skip to content

Commit

Permalink
add icons to about settings section
Browse files Browse the repository at this point in the history
change some settings description text
  • Loading branch information
lamarios committed Oct 5, 2023
1 parent 77e8d43 commit 290143a
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions lib/settings/views/screens/settings.dart
Original file line number Diff line number Diff line change
Expand Up @@ -119,9 +119,7 @@ class SettingsScreen extends StatelessWidget {
locals.useDash,
locals.useProxy,
locals.autoplayVideoOnLoad,
locals.subtitleFontSize,
locals.rememberSubtitleLanguage,
locals.rememberPlaybackSpeed,
locals.subtitles,
"SponsorBlock",
locals.lockFullScreenToLandscape,
locals.fillFullscreen
Expand Down Expand Up @@ -149,16 +147,20 @@ class SettingsScreen extends StatelessWidget {
),
]),
SettingsSection(title: (Text(locals.about)), tiles: [
SettingsTile(title: const Center(child: SizedBox(height: 150, width: 150, child: AppIcon()))),
SettingsTile(
title: const Center(child: SizedBox(height: 150, width: 150, child: AppIcon()))),
SettingsTile(
leading: const Icon(Icons.badge_outlined),
title: Text('${locals.name}: ${_.packageInfo.appName}'),
description: Text('${locals.package}: ${_.packageInfo.packageName}'),
),
SettingsTile(
leading: const Icon(Icons.numbers),
title: Text('${locals.version}: ${_.packageInfo.version}'),
description: Text('${locals.build}: ${_.packageInfo.buildNumber}'),
),
SettingsTile(
leading: const Icon(Icons.toc),
title: Text(locals.appLogs),
description: Text(locals.appLogsDescription),
onPressed: openAppLogs,
Expand Down

0 comments on commit 290143a

Please sign in to comment.