Skip to content

Commit

Permalink
Merge branch 'main' into release
Browse files Browse the repository at this point in the history
  • Loading branch information
sadespresso committed Apr 21, 2024
2 parents 28b6758 + b1ab686 commit 86c67ff
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
15 changes: 8 additions & 7 deletions lib/routes/account/account_edit_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -229,14 +229,15 @@ class _AccountEditPageState extends State<AccountEditPage> {
title: Text("account.excludeFromTotalBalance".t(context)),
activeColor: context.colorScheme.primary,
),
ListTile(
title: Text("currency".t(context)),
trailing: Text(
_currency,
style: context.textTheme.labelLarge,
if (widget.isNewAccount)
ListTile(
title: Text("currency".t(context)),
trailing: Text(
_currency,
style: context.textTheme.labelLarge,
),
onTap: selectCurrency,
),
onTap: selectCurrency,
),
if (_currentlyEditing != null) ...[
const SizedBox(height: 80.0),
DeleteButton(
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ description: A personal finance managing app

publish_to: "none" # Remove this line if you wish to publish to pub.dev

version: "0.5.1+43"
version: "0.5.1+44"

environment:
sdk: ">=3.1.3 <4.0.0"
Expand Down

0 comments on commit 86c67ff

Please sign in to comment.