This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"en": { | |
"password": "Password", | |
"phoneNumber": "Phone Number", | |
"singIn": "Sign in!" | |
}, | |
"es": { | |
"password": "Contraseña", | |
"phoneNumber": "Número de teléfono", | |
"singIn": "Registrarse!" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* initialValues: fieldların default değerlerini atamayı sağlar. Atamak için field'a özgü olan name kullanılır. | |
* | |
* onSubmit: handleSubmit fonksiyonu çalıştırıldığında doğrulama işlemleri başarılı olursa tetiklenir. values >> | |
* içinde field'ların değerleri bulunur. | |
* | |
* render: form fieldlarını basıldığı kısımdır. | |
* | |
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* | |
* name: field'a özgü olmalıdır. Form gönderildiğinde değerlere values içerisinde verdiğiniz >> | |
* name değeri ile ulaşabilirsiniz. | |
* | |
* validate: doğrulama işlemlerini sağlar birden fazla doğrulama işlemini yapabilirsiniz. | |
* | |
* render: içerisine input ile ilgili componentleri yerleştirebilirsiniz. | |
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const CustomTextInput = ({ placeholder, input, meta, label }) => ( | |
<View style={styles.container}> | |
{label && <Text style={styles.labelTitle}>{label}</Text>} | |
<TextInput style={styles.textInput} {...input} placeholder={placeholder} /> | |
{meta.error && meta.touched && ( | |
<Text style={styles.errorTitle}>{meta.error}</Text> | |
)} | |
</View> | |
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* eslint-disable */ | |
import React from 'react'; | |
import { | |
SafeAreaView, | |
TextInput, | |
TouchableOpacity, | |
Text, | |
View, | |
} from 'react-native'; | |
import { Form, Field } from 'react-final-form'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// dosya yolu: android/app/src/main/java/com/rnavigationerror/MainApplication.java | |
package com.rnavigationerror; | |
import android.app.Application; | |
import android.util.Log; | |
import com.facebook.react.PackageList; | |
import com.facebook.hermes.reactexecutor.HermesExecutorFactory; | |
import com.facebook.react.bridge.JavaScriptExecutorFactory; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// android/app/build.gradle, | |
project.ext.react = [ | |
entryFile: "index.js", | |
- enableHermes: false | |
+ enableHermes: true | |
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Verifying my Blockstack ID is secured with the address 14P7CMcKQ8vnFm9Nj7DzTzhUmRyzFHutxV https://explorer.blockstack.org/address/14P7CMcKQ8vnFm9Nj7DzTzhUmRyzFHutxV |