Skip to content

Commit

Permalink
Updated the entry of apply real card
Browse files Browse the repository at this point in the history
  • Loading branch information
iamgamelover committed Jan 27, 2024
1 parent c8e5139 commit f9e2292
Show file tree
Hide file tree
Showing 7 changed files with 24 additions and 15 deletions.
12 changes: 10 additions & 2 deletions lib/cards/card_part.dart
Original file line number Diff line number Diff line change
Expand Up @@ -146,12 +146,20 @@ class _CardPartState extends State<CardPart> {
width: double.infinity,
height: 40,
decoration: ShapeDecoration(
color: const Color(0x11B7B8BD),
color: Colors.blue,
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(6),

),
),
child: Center(child: Text(S.of(context).realCard_title))));
child: Center(
child: Text(
S.of(context).realCard_title,
style: const TextStyle(fontSize: 18, color: Colors.white)
)
)
)
);
}

Widget buildApplyCardPart() {
Expand Down
5 changes: 3 additions & 2 deletions lib/generated/intl/messages_en.dart
Original file line number Diff line number Diff line change
Expand Up @@ -53,15 +53,16 @@ class MessageLookup extends MessageLookupByLibrary {
"alert_ok": MessageLookupByLibrary.simpleMessage("OK"),
"alert_title": MessageLookupByLibrary.simpleMessage("Message"),
"applyCard_ApplyCard":
MessageLookupByLibrary.simpleMessage("Apply Card"),
MessageLookupByLibrary.simpleMessage("Apply Virtual Card"),
"applyCard_ApplyLater":
MessageLookupByLibrary.simpleMessage("APPLY LATER"),
"applyCard_Desc1": MessageLookupByLibrary.simpleMessage(
"Our new virtual card allows you to:"),
"applyCard_Desc2": MessageLookupByLibrary.simpleMessage(
"- Pay conveniently for online transactions \n- Exchange Currencies & Crypto \n- Send & Receive"),
"applyCard_Desc3": m0,
"applyCard_Title": MessageLookupByLibrary.simpleMessage("Apply Card"),
"applyCard_Title":
MessageLookupByLibrary.simpleMessage("Apply Virtual Card"),
"applyCard_VirtualCard":
MessageLookupByLibrary.simpleMessage("Virtual Card"),
"cardActivity_tile":
Expand Down
4 changes: 2 additions & 2 deletions lib/generated/intl/messages_zh_TW.dart
Original file line number Diff line number Diff line change
Expand Up @@ -50,13 +50,13 @@ class MessageLookup extends MessageLookupByLibrary {
"alert_cancel": MessageLookupByLibrary.simpleMessage("取消"),
"alert_ok": MessageLookupByLibrary.simpleMessage("確定"),
"alert_title": MessageLookupByLibrary.simpleMessage("消息"),
"applyCard_ApplyCard": MessageLookupByLibrary.simpleMessage("申請卡片"),
"applyCard_ApplyCard": MessageLookupByLibrary.simpleMessage("申請虛擬卡"),
"applyCard_ApplyLater": MessageLookupByLibrary.simpleMessage("稍後申請"),
"applyCard_Desc1": MessageLookupByLibrary.simpleMessage("我們的新虛擬卡片允許您:"),
"applyCard_Desc2": MessageLookupByLibrary.simpleMessage(
"- 方便線上交易支付 \n- 兌換貨幣和加密貨幣 \n- 發送和接收"),
"applyCard_Desc3": m0,
"applyCard_Title": MessageLookupByLibrary.simpleMessage("申請卡片"),
"applyCard_Title": MessageLookupByLibrary.simpleMessage("申請虛擬卡"),
"applyCard_VirtualCard": MessageLookupByLibrary.simpleMessage("虛擬卡片"),
"cardActivity_tile": MessageLookupByLibrary.simpleMessage("卡活動"),
"cardRecharge_title": MessageLookupByLibrary.simpleMessage("支付NFT"),
Expand Down
8 changes: 4 additions & 4 deletions lib/generated/l10n.dart

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions lib/l10n/intl_en.arb
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,13 @@
"signUp_Nickname": "Nickname",
"signUp_InvitationCode": "Invitation Code",

"applyCard_Title": "Apply Card",
"applyCard_Title": "Apply Virtual Card",
"applyCard_VirtualCard": "Virtual Card",
"applyCard_Desc1": "Our new virtual card allows you to:",
"applyCard_Desc2": "- Pay conveniently for online transactions \n- Exchange Currencies & Crypto \n- Send & Receive",
"applyCard_Desc3": "*** There is a fee of ${createFee} to apply for a virtual card.",
"applyCard_ApplyLater": "APPLY LATER",
"applyCard_ApplyCard": "Apply Card",
"applyCard_ApplyCard": "Apply Virtual Card",

"cardActivity_tile": "Card Activity",
"exchange_tile": "Exchange",
Expand Down
4 changes: 2 additions & 2 deletions lib/l10n/intl_zh_TW.arb
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,13 @@
"signUp_Nickname": "暱稱",
"signUp_InvitationCode": "邀請碼",

"applyCard_Title": "申請卡片",
"applyCard_Title": "申請虛擬卡",
"applyCard_VirtualCard": "虛擬卡片",
"applyCard_Desc1": "我們的新虛擬卡片允許您:",
"applyCard_Desc2": "- 方便線上交易支付 \n- 兌換貨幣和加密貨幣 \n- 發送和接收",
"applyCard_Desc3": "*** 申請虛擬卡片需要支付 {createFee} 美元的費用。",
"applyCard_ApplyLater": "稍後申請",
"applyCard_ApplyCard": "申請卡片",
"applyCard_ApplyCard": "申請虛擬卡",

"cardActivity_tile": "卡活動",
"exchange_tile": "兌換",
Expand Down
2 changes: 1 addition & 1 deletion lib/tools/global_params.dart
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ int pageSize = 10;
class GlobalParams {
static EventBus eventBus = EventBus();

static EnumNetworkType currNetwork = EnumNetworkType.goerli;
static EnumNetworkType currNetwork = EnumNetworkType.mainnet;

static int grpcTimeout = 30;
static String currLangName = "en";
Expand Down

0 comments on commit f9e2292

Please sign in to comment.