Skip to content

Commit 748d27b

Browse files
authored
Merge pull request #31 from bsv-blockchain/dev
Release v0.3.2
2 parents 5388bf9 + 6b7533f commit 748d27b

File tree

15 files changed

+508
-153
lines changed

15 files changed

+508
-153
lines changed

app.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"expo": {
33
"name": "Metanet",
44
"slug": "metanet-mobile",
5-
"version": "0.3.0",
5+
"version": "0.3.2",
66
"orientation": "default",
77
"icon": "./assets/images/icon.png",
88
"scheme": "metanet",

app/auth/password.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,9 +114,9 @@ export default function PasswordScreen() {
114114
disabled={!isButtonEnabled() || loading}
115115
>
116116
{loading ? (
117-
<ActivityIndicator color={colors.buttonText} />
117+
<ActivityIndicator color={colors.buttonTextDisabled} />
118118
) : (
119-
<Text style={styles.buttonText}>{t('continue')}</Text>
119+
<Text style={[styles.buttonText, (!isValidPassword() || loading) && styles.buttonTextDisabled]}>{t('continue')}</Text>
120120
)}
121121
</TouchableOpacity>
122122

app/auth/phone.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -199,9 +199,9 @@ export default function PhoneScreen() {
199199
disabled={!isValidPhoneNumber() || loading}
200200
>
201201
{loading ? (
202-
<ActivityIndicator color={colors.buttonText} />
202+
<ActivityIndicator color={colors.buttonTextDisabled} />
203203
) : (
204-
<Text style={styles.buttonText}>{t('continue')}</Text>
204+
<Text style={[styles.buttonText, (!isValidPhoneNumber() || loading) && styles.buttonTextDisabled]}>{t('continue')}</Text>
205205
)}
206206
</TouchableOpacity>
207207

0 commit comments

Comments
 (0)