Skip to content

Commit

Permalink
Merge pull request #172 from archethic-foundation/171-ui-feedbacks-co…
Browse files Browse the repository at this point in the history
…mmunity

Apply some UI feedbacks from community
  • Loading branch information
redDwarf03 committed Apr 20, 2024
2 parents ab74a4e + 1811b45 commit 68b252d
Show file tree
Hide file tree
Showing 48 changed files with 1,963 additions and 1,660 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/aeweb_mainnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
- name: Deploy to aeHosting
id: deploy
uses: archethic-foundation/aeweb-github-action@v1.8.1
uses: archethic-foundation/aeweb-github-action@v1.8.3
with:
seed: ${{ secrets.ARCH_BASE_SEED_MAINNET }}
endpoint: "https://mainnet.archethic.net"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/aeweb_testnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
- name: Deploy to aeHosting
id: deploy
uses: archethic-foundation/aeweb-github-action@v1.8.1
uses: archethic-foundation/aeweb-github-action@v1.8.3
with:
seed: ${{ secrets.ARCH_BASE_SEED }}
endpoint: "https://testnet.archethic.net"
Expand Down
Binary file removed assets/images/background-menu.png
Binary file not shown.
Binary file modified assets/images/background-welcome.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/main-background.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion lib/l10n/intl_en.arb
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"go": "Go !",
"btn_connect_wallet": "Connect wallet",
"confirmationPopupTitle": "Confirmation Request",
"connectionWalletDisconnectWarning": "Are you sure you want to disconnect your wallet\nand exit the application?",
"connectionWalletDisconnectWarning": "Are you sure you want to disconnect your wallet and exit the application?",
"changeCurrentAccountWarning": "Warning, your current account has been updated.",
"welcomeNoWallet": "Unlock the full potential of our Web3 application - get the Archethic Wallet now!",
"menu_swap": "Swap",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,7 @@ class FarmClaimConfirmInfos extends ConsumerWidget {
DexTokenBalance(
tokenBalance: snapshot.data!,
token: farmClaim.rewardToken,
digits: aedappfm.Responsive.isMobile(context) ? 2 : 8,
withFiat: false,
height: 20,
),
Expand All @@ -182,6 +183,7 @@ class FarmClaimConfirmInfos extends ConsumerWidget {
))
.toDouble(),
token: farmClaim.rewardToken,
digits: aedappfm.Responsive.isMobile(context) ? 2 : 8,
withFiat: false,
height: 20,
),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,12 @@ class FarmClaimFormSheet extends ConsumerWidget {
child: SelectionArea(
child: SelectableText(
AppLocalizations.of(context)!.farmClaimFormTitle,
style: Theme.of(context).textTheme.titleMedium,
style: Theme.of(context).textTheme.titleMedium!.copyWith(
fontSize: aedappfm.Responsive.fontSizeFromTextStyle(
context,
Theme.of(context).textTheme.titleMedium!,
),
),
),
),
),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,7 @@ class FarmDepositConfirmInfos extends ConsumerWidget {
tokenBalance: farmDeposit.lpTokenBalance,
token: farmDeposit.dexFarmInfo!.lpToken,
withFiat: false,
digits: aedappfm.Responsive.isMobile(context) ? 2 : 8,
height: 20,
),
DexTokenBalance(
Expand All @@ -143,6 +144,7 @@ class FarmDepositConfirmInfos extends ConsumerWidget {
))
.toDouble(),
token: farmDeposit.dexFarmInfo!.lpToken,
digits: aedappfm.Responsive.isMobile(context) ? 2 : 8,
withFiat: false,
height: 20,
),
Expand Down Expand Up @@ -205,6 +207,7 @@ class FarmDepositConfirmInfos extends ConsumerWidget {
tokenBalance: farmDeposit.dexFarmInfo!.lpTokenDeposited,
token: farmDeposit.dexFarmInfo!.lpToken,
withFiat: false,
digits: aedappfm.Responsive.isMobile(context) ? 2 : 8,
height: 20,
),
DexTokenBalance(
Expand All @@ -217,6 +220,7 @@ class FarmDepositConfirmInfos extends ConsumerWidget {
))
.toDouble(),
token: farmDeposit.dexFarmInfo!.lpToken,
digits: aedappfm.Responsive.isMobile(context) ? 2 : 8,
withFiat: false,
height: 20,
),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,12 @@ class FarmDepositFormSheet extends ConsumerWidget {
child: SelectionArea(
child: SelectableText(
AppLocalizations.of(context)!.farmDepositFormTitle,
style: Theme.of(context).textTheme.titleMedium,
style: Theme.of(context).textTheme.titleMedium!.copyWith(
fontSize: aedappfm.Responsive.fontSizeFromTextStyle(
context,
Theme.of(context).textTheme.titleMedium!,
),
),
),
),
),
Expand Down
Loading

0 comments on commit 68b252d

Please sign in to comment.