ui fixes and date press feature

This commit is contained in:
ivic00
2024-11-10 15:25:07 +01:00
parent d6642726e6
commit 844f534e13
5 changed files with 66 additions and 34 deletions

View File

@ -142,9 +142,15 @@ const SignUpPage = () => {
<View gap-5 marginT-15>
<View row centerV>
<Checkbox
style={[styles.check]}
style={[
styles.check,
{ borderRadius: 3, width: 18, height: 18 },
]}
color="#919191"
size={18}
borderRadius={3}
value={allowFaceID}
containerStyle={{borderRadius: 3, width: 18, height: 18}}
onValueChange={(value) => {
setAllowFaceID(value);
}}
@ -155,8 +161,14 @@ const SignUpPage = () => {
</View>
<View row centerV>
<Checkbox
style={styles.check}
style={[
styles.check,
{ borderRadius: 3, width: 18, height: 18 },
]}
color="#919191"
size={18}
containerStyle={{borderRadius: 3, width: 18, height: 18}}
borderRadius={3}
value={acceptTerms}
onValueChange={(value) => setAcceptTerms(value)}
/>