mirror of
https://github.com/urosran/cally.git
synced 2025-11-27 17:04:55 +00:00
ui fixes and date press feature
This commit is contained in:
@ -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)}
|
||||
/>
|
||||
|
||||
Reference in New Issue
Block a user