React And React Native ES5 And ES6 REFERENCE In ES5, if you use CommonJS standard, the introduction of React package through basic require, the code is similar to this: //ES5 var React = require(“react”); var { Component, PropTypes } = React; var ReactNative = require(“react-native”); var { Image, Text, } = ReactNative; In ES6, the […]
React native guide
React native guide Command Line Getting Started Creating Project: Open Terminal App react-native init AppName cd AppName Running App in the IOS Simulator react-native run-ios Running App in the Android Simulator react-native run-android; Upgrading React Native To upgrade React Native to the latest version execute: npm install –save react-native@latest; To upgrade project files execute: react-native […]
React native build apk release
React native build apk release on windows Cách build file apk release app được code bằng react native. Đầu tiền cần phải tạo được keystore. Tên my-release-key.keystore và my-key-alias các bạn có thể thay đổi tùy ý. Lưu ý: máy tính phải đã cài đặt môi trường java khai bảo tại Environment variables -> path Mở cmd trong thư mục […]
Tạo action BackAndroid trong React native
Tạo action BackAndroid trong React native Trên các smartphone android thường sẽ có 1 nút back vật lý ngay trên màn hình. Khi làm việc trong react-native chúng ta có thể tạo action cho nó hoạt động được với app. Dưới đây là đoạn code giúp bạn thực hiện điều đó trong react-native import […]
Các bước cài đặt React Native trên Windows
Các bước cài đặt React Native trên mỗi trường Windows cho Android Hôm nay mình xin hướng dẫn các bạn cách cài đặt React Native và môi trường phát triển trên máy chạy Window. Mình sử dụng máy window để code App React Native, nên sẽ tập chung cài đặt cho window và android. Do […]