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 {StatusBar, Text, View} from 'react-native'; | |
const App = () => { | |
return ( | |
<> | |
<StatusBar barStyle={'dark-content'} /> | |
<View style={{flex: 1, justifyContent: 'center', alignItems: 'center'}}> | |
<Text>Rick and Morty Characters API</Text> | |
</View> |
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 { StatusBar } from "expo-status-bar"; | |
import React from "react"; | |
import { StyleSheet, Text, View } from "react-native"; | |
import { AppLoading } from "expo"; | |
import { | |
useFonts, | |
Roboto_400Regular, | |
Roboto_700Bold, | |
} from "@expo-google-fonts/roboto"; |
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 Constants from "expo-constants"; | |
import { useNavigation, useRoute } from "@react-navigation/native"; | |
import { LinearGradient } from "expo-linear-gradient"; | |
import { | |
StyleSheet, | |
View, | |
Text, | |
Image, | |
ImageBackground, |
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 Constants from "expo-constants"; | |
import { useNavigation, useRoute } from "@react-navigation/native"; | |
import { LinearGradient } from "expo-linear-gradient"; | |
import { | |
StyleSheet, | |
View, | |
Text, | |
ImageBackground, | |
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 from "react"; | |
import { StyleSheet, View } from "react-native"; | |
interface ISkillBar { | |
value: number; | |
} | |
const SkillBar: React.FC<ISkillBar> = ({ value }) => { | |
return ( | |
<View style={styles.progressContent}> |
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 Constants from "expo-constants"; | |
import { useNavigation, useRoute } from "@react-navigation/native"; | |
import { LinearGradient } from "expo-linear-gradient"; | |
import { | |
StyleSheet, | |
View, | |
Text, | |
ImageBackground, | |
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 from "react"; | |
import Constants from "expo-constants"; | |
import { useNavigation, useRoute } from "@react-navigation/native"; | |
import { LinearGradient } from "expo-linear-gradient"; | |
import { | |
StyleSheet, | |
View, | |
Text, | |
ImageBackground, | |
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 from "react"; | |
import Constants from "expo-constants"; | |
import { useNavigation, useRoute } from "@react-navigation/native"; | |
import { LinearGradient } from "expo-linear-gradient"; | |
import { StyleSheet, View, Text, ImageBackground } from "react-native"; | |
interface IParams { | |
character: { | |
name: string; | |
alterEgo: string; |
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 Constants from "expo-constants"; | |
import { StyleSheet, View, Text, ImageBackground } from "react-native"; | |
import { useNavigation, useRoute } from "@react-navigation/native"; | |
interface IParams { | |
character: { | |
name: string; | |
alterEgo: string; | |
imagePath: string; |
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, View, Text } from "react-native"; | |
import { useNavigation, useRoute } from "@react-navigation/native"; | |
interface IParams { | |
character: { | |
name: string; | |
alterEgo: string; | |
imagePath: string; | |
biography: string; |
NewerOlder