React Native - Navigator 導覽換頁
react native navigator 快速建立換頁功能。
在 react native 中,換頁是不可或缺的功能,
Navigator 即為我們主要使用的原件,
以下步驟將實作出簡單的換頁功能,並且於 app 頂端有導覽列。
引用元件
import {
AppRegistry,
Platform,
TouchableOpacity,
StyleSheet,
Navigator,
View,
Text,
} from 'react-native';
Plat...
blog.robby570.tw3 min read