When using `ComponentActivity` with no theme appli...
# compose
a
When using
ComponentActivity
with no theme applied manifest.. and without any app compat or material.. it adds a toolbar... how can it be removed?
I mean, shouldn't the theme:
Copy code
android:theme="@android:style/Theme.NoTitleBar"
be the default?
i
You can't change the default without breaking everyone who already depends on the existing default. You'll still want to set your theme in any case as that will always be how you set your
windowBackground
color, etc.
👍 1
a
mmm, make sense
thnaks