Skip to content

Commit

Permalink
text
Browse files Browse the repository at this point in the history
  • Loading branch information
jiangtian616 committed Oct 16, 2024
1 parent d3f68b1 commit 9acba6e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/src/pages/setting/about/setting_about_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ class _SettingAboutPageState extends State<SettingAboutPage> {
body: ListView(
padding: const EdgeInsets.only(top: 16),
children: [
ListTile(title: Text('version'.tr), subtitle: Text(version.isEmpty ? '1.0.0' : '$version+$buildNumber')),
ListTile(title: Text('version'.tr), subtitle: Text(version.isEmpty ? '1.0.0' : version + (buildNumber.isEmpty ? '' : '+$buildNumber'))),
ListTile(title: Text('author'.tr), subtitle: SelectableText(author)),
ListTile(
title: const Text('Github'),
Expand Down

0 comments on commit 9acba6e

Please sign in to comment.