Is there a way to have a snackbar, shown via `scaf...
# compose
f
Is there a way to have a snackbar, shown via
scaffoldState.snackbarHostState.showSnackbar
appear above the keyboard without changing the
windowSoftInputMode
in the manifest?
b
You could use accompanist insets library's
imePadding()
on
SnackbarHost
modifier
f
thank you, sounds exactly like what I need!