Skip to content

Instantly share code, notes, and snippets.

@yamankatby
Created October 4, 2019 17:25
Show Gist options
  • Save yamankatby/2f3d2383f242176013abb03a95ed79b9 to your computer and use it in GitHub Desktop.
Save yamankatby/2f3d2383f242176013abb03a95ed79b9 to your computer and use it in GitHub Desktop.
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