We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When using edgeToEdge, the view size is no longer adjusting when the keyboard is visible, resulting in buttons hidden behind the keyboard.
Without edgeToEdge call in the main Activity:
With EdgeToEdge call in the main Activity.
The text was updated successfully, but these errors were encountered:
Sorry, something went wrong.
Actually, it looks like it is possible to fix that issue by adjusting the main composition padding:
@AndroidEntryPoint class TodoActivity : ComponentActivity() { override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) enableEdgeToEdge() setContent { TodoTheme { TodoNavGraph(Modifier.safeDrawingPadding()) } } } }
No branches or pull requests
When using edgeToEdge, the view size is no longer adjusting when the keyboard is visible, resulting in buttons hidden behind the keyboard.
Without edgeToEdge call in the main Activity:
With EdgeToEdge call in the main Activity.
The text was updated successfully, but these errors were encountered: