Not strictly compose related... but I created a ne...
# compose
c
Not strictly compose related... but I created a new app using the Compose template in Android studio. Does the status bar seem weirdly tall to you? I have NoActionBar, and only a statusBarColor set. Should I be doing something different in the theme for a strictly compose app?
Copy code
<?xml version="1.0" encoding="utf-8"?>
<resources>
    <style name="Theme.MyApp" parent="android:Theme.Material.Light.NoActionBar">
        <item name="android:statusBarColor">@color/purple_700</item>
    </style>
</resources>
s
Try doing a cold boot of the emulator
c
Didn't help.
r
@Colton Idle I noticed this on pixel 5 emulator with device skin. Try it without device skin enabled. There is some sort of bug with insets in this case. Pixel 3a with and without device skin works normally for me.
c
Even with no skin it still has a similar issue.
Filed a bug here if anyone wants to star: https://issuetracker.google.com/issues/195336466