0

Welcome , I have a problem in my android **flutter ** app I have this title bar ( label bar ) how can I hide it ?

Check Image here

My AndroidMainfest

 <application
        android:label="App Title"
        android:name="${applicationName}"
        android:icon="@mipmap/ic_launcher"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:requestLegacyExternalStorage="true">
easleyfixed
  • 219
  • 1
  • 13

1 Answers1

0

Old version: res > values > styles.xml or New version: res > values > themes.xml

<style name="NoActionBar" parent="MyTheme">
<item name="android:windowActionBar">false</item>
<item name="android:windowNoTitle">true</item>
</style>

Also you can try in Android manifest file :

<activity android:name=".activity.ContinueLoginActivity"
android:theme="@style/Theme.AppCompat.Light.NoActionBar"
android:screenOrientation="portrait" />

I have never encountered such a situation before. I thought it was probably caused by kotlin. I hope it helps. Enjoy your work.

MobileDev
  • 214
  • 7