This file contains hidden or 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
| import React from 'react'; | |
| import { | |
| StyleSheet, | |
| Text, | |
| View, | |
| TextInput, | |
| Image, | |
| Dimensions, | |
| TouchableOpacity, | |
| TouchableWithoutFeedback, |
This file contains hidden or 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
| import React, { useEffect } from 'react'; | |
| import { | |
| StyleSheet, | |
| Text, | |
| View, | |
| TextInput, | |
| StatusBar, | |
| Keyboard, | |
| TouchableWithoutFeedback, | |
| TouchableOpacity, |
This file contains hidden or 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
| import React, { useState, useEffect } from 'react'; | |
| import { | |
| StyleSheet, | |
| Text, | |
| View, | |
| TextInput, | |
| StatusBar, | |
| TouchableOpacity, | |
| Image, | |
| ScrollView, |
This file contains hidden or 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
| import React, { useState, useEffect } from 'react'; | |
| import { | |
| StyleSheet, | |
| Text, | |
| View, | |
| StatusBar, | |
| TouchableOpacity, | |
| Image, | |
| TextInput, | |
| Alert, |
This file contains hidden or 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
| import React, { useState, useEffect } from 'react'; | |
| import { | |
| StyleSheet, | |
| Text, | |
| View, | |
| StatusBar, | |
| TouchableOpacity, | |
| Image, | |
| TextInput, | |
| Alert, |
This file contains hidden or 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
| import React, { useState, useEffect } from 'react'; | |
| import { | |
| StyleSheet, | |
| Text, | |
| View, | |
| ScrollView, | |
| Image, | |
| TouchableOpacity, | |
| StatusBar, | |
| Dimensions, |
This file contains hidden or 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
| import React from 'react'; | |
| import { StyleSheet, Text, View } from 'react-native'; | |
| // npm i @react-navigation/bottom-tabs react-native-elements | |
| import { createBottomTabNavigator } from '@react-navigation/bottom-tabs'; | |
| import { Icon } from 'react-native-elements'; | |
| function TabA() { | |
| return ( | |
| <View style={styles.container}> |
This file contains hidden or 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
| import React from 'react'; | |
| import { StyleSheet, Text, View } from 'react-native'; | |
| // npm install @react-navigation/material-top-tabs react-native-tab-view | |
| import { createMaterialTopTabNavigator } from '@react-navigation/material-top-tabs'; | |
| function TabA() { | |
| return ( | |
| <View style={styles.container}> | |
| <Text style={styles.text}>Tab A</Text> |
This file contains hidden or 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
| import React from 'react'; | |
| import { StyleSheet, Text, View } from 'react-native'; | |
| // npm install @react-navigation/drawer | |
| import { createDrawerNavigator } from '@react-navigation/drawer'; | |
| import { NavigationContainer } from '@react-navigation/native'; | |
| function ScreenA() { | |
| return ( | |
| <View style={styles.container}> |
This file contains hidden or 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
| import React, { useState, useEffect } from 'react'; | |
| import { | |
| StyleSheet, | |
| Text, | |
| View, | |
| Image, | |
| TextInput, | |
| TouchableOpacity, | |
| TouchableWithoutFeedback, | |
| Keyboard, |
OlderNewer