Hi I'm new to Android Studio, how can I fix my emulator? because my composables are overlapping the default Top App bar of the emulator itself. Thanks in advance
1. Its called statusbar
2. Your activity might be calling egde-to-edge() some where before the super.onCreate() of your acitivity
3. Even if you intented to make it edge-to-edge, you need to apply the statusbarpadding to your root composables/layout to not let it overlap with the statusbar
❤️ 1
j
John Ace Magno
04/30/2024, 9:07 AM
Wow this is more easy to understand thank you so much!