Change variable name for 'not connected' message

pull/490/head
Don Turner 2 years ago
parent a1d47d5418
commit 4e4f48e88c

@ -101,10 +101,10 @@ fun NiaApp(
val isOffline by appState.isOffline.collectAsStateWithLifecycle() val isOffline by appState.isOffline.collectAsStateWithLifecycle()
// If user is not connected to the internet show a snack bar to inform them. // If user is not connected to the internet show a snack bar to inform them.
val notConnected = stringResource(R.string.not_connected) val notConnectedMessage = stringResource(R.string.not_connected)
LaunchedEffect(isOffline) { LaunchedEffect(isOffline) {
if (isOffline) snackbarHostState.showSnackbar( if (isOffline) snackbarHostState.showSnackbar(
message = notConnected, message = notConnectedMessage,
duration = Indefinite duration = Indefinite
) )
} }

Loading…
Cancel
Save