Skip to content

Instantly share code, notes, and snippets.

@emanueleDiVizio
Created June 8, 2020 15:02
Show Gist options
  • Save emanueleDiVizio/4dd409efbe2e12d57cbc7c48ac6b3873 to your computer and use it in GitHub Desktop.
Save emanueleDiVizio/4dd409efbe2e12d57cbc7c48ac6b3873 to your computer and use it in GitHub Desktop.
const OfflineBanner = () => {
const [isOffline] = useNetworkInfo();
if (isOffline) {
return (
<View style={styles.container}>
<View style={styles.row}>
<Text>You are currently offline</Text>
</View>
</View>
);
}
return <></>;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment