react native important points
video 64/71
React native:--
npx create-expo-app --template blank project1
https://github.com/academind/react-native-practical-guide-code
shadow for background:--
elevation:-for android
for ios:--
shadowColor
ShadowOffset
ShadowRadius
textInput:-
maxLength={2}
keyboard-type:number-pad
autoCapitalized:none
autoCorrect false
https://geekyants.com/blog/using-tailwind-css-in-react-native/
https://www.kindacode.com/article/working-with-checkbox-in-react-native/
https://reactnative.dev/docs/running-on-device?os=windows
https://github.com/react-native-community/cli/blob/main/packages/cli-doctor/README.md#doctor
npx react-native run-android[react native android]
npx react-native info
eas build -p android --profile preview
eas build -p ios --profile preview
eas.json
// "preview": {
// "android": {
// "buildType": "apk"
// }
// },
"preview": {
"ios": {
"simulator": true
}
Comments
Post a Comment