Skip to content

Instantly share code, notes, and snippets.

@PatilShreyas
Created August 17, 2021 12:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save PatilShreyas/2f9fb4cc66c3bd945dd1c1cb28644a2a to your computer and use it in GitHub Desktop.
Save PatilShreyas/2f9fb4cc66c3bd945dd1c1cb28644a2a to your computer and use it in GitHub Desktop.
@ExperimentalCoroutinesApi
@Composable
fun ConnectivityStatus() {
// This will cause re-composition on every network state change
val connection by connectivityState()
val isConnected = connection === ConnectionState.Available
if (isConnected) {
// Show UI when connectivity is available
} else {
// Show UI for No Internet Connectivity
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment