This file contains 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, useRef } from 'react'; | |
import { | |
StyleSheet, | |
Text, | |
View, | |
TouchableOpacity, | |
TouchableWithoutFeedback, | |
Image, | |
} from 'react-native'; |
This file contains 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, useRef } from 'react'; | |
import { | |
StyleSheet, | |
Text, | |
View, | |
TouchableWithoutFeedback, | |
Image, | |
} from 'react-native'; | |
// npm install react-native-snap-carousel |
This file contains 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, { useRef, useState } from 'react'; | |
import { | |
StyleSheet, | |
Text, | |
View, | |
TextInput, | |
TouchableOpacity, | |
} from 'react-native'; | |
import ConfettiCannon from 'react-native-confetti-cannon'; |
This file contains 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, useState } from 'react'; | |
import { | |
StyleSheet, | |
Text, | |
View, | |
StatusBar, | |
TouchableOpacity, | |
ScrollView, | |
Image, | |
Dimensions, |
This file contains 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, | |
Image, | |
TextInput, | |
TouchableOpacity, | |
TouchableWithoutFeedback, | |
Dimensions, |
This file contains 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, | |
TextInput, | |
TouchableOpacity, | |
TouchableWithoutFeedback, | |
Keyboard, |
This file contains 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, |
This file contains 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 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 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}> |