Created
October 4, 2019 17:25
-
-
Save yamankatby/2f3d2383f242176013abb03a95ed79b9 to your computer and use it in GitHub Desktop.
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 { Text, View } from "react-native"; | |
import ProgressOverlay from "react-native-progress-overlay"; | |
const Home = props => { | |
return ( | |
<View style={{ flex: 1 }}> | |
<ProgressOverlay visible={true} /> | |
<Text>Hi, this is my Home screen!</Text> | |
</View> | |
); | |
}; | |
export default Home; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment