Difference between revisions of "Expo"

From belajarwiki
Jump to navigation Jump to search
Line 23: Line 23:
 
Untuk navigasi antar pages
 
Untuk navigasi antar pages
 
  expo install react-native-screens react-native-safe-area-context
 
  expo install react-native-screens react-native-safe-area-context
 +
expo install react-native-gesture-handler react-native-reanimated react-native-screens react-native-safe-area-context @react-native-community/masked-view
  
 
===QR Code===
 
===QR Code===
Line 28: Line 29:
 
  expo install expo-barcode-scanner
 
  expo install expo-barcode-scanner
  
 +
===Axios===
 +
Untuk API dapat menggunakan axios
 +
npm install axios
  
 
==Pranala menarik==
 
==Pranala menarik==

Revision as of 17:10, 21 July 2022

Instalasi

npm install --global expo-cli

Membuat project baru

expo init my-project

Jika ingin menggunakan device asli, bisa install Expo Go, atau nanti akan diinstall ketika akan dijalankan (device tersambung). Cek device yang terhubung dengan

adb devices

Running aplikasi

Masuk ke folder

cd  my-project
yarn start

Instalasi Library

Navigasi

Untuk navigasi antar pages

expo install react-native-screens react-native-safe-area-context
expo install react-native-gesture-handler react-native-reanimated react-native-screens react-native-safe-area-context @react-native-community/masked-view

QR Code

Untuk membaca QR code

expo install expo-barcode-scanner

Axios

Untuk API dapat menggunakan axios

npm install axios

Pranala menarik

Referensi