Handle large name of App in Flutter
Flutter Tutorial:
Flutter Widgets:
Flutter Advance
Flutter REST API
Advanced Concepts
Wrap vs Builder vs OverBarFlow
Circular progress contain Icon
Flutter State management Comparison
Flutter Database
Flutter Token Expired Handling
Flutter Provider
Flutter GetX
Flutter with Native
Flutter Tips:
Interview Questions
Flutter 100 Interview Questions
Flutter framework is highly suitable for cross platform (Android/iOS/Web/Desktop/64bit hardware) where developers can create any type of applications. Sometimes developer faces problem when application title is big, especially in Android/iOS. To deal with this issue follow the steps below which show names in two lines
Step 1: Go to android/app/src/main/AndroidManifest.xml
Step 2: Change the below line with “New Name of App”
<application
android:label="AppName"
<application
android:label="New App Name"
Step 3: Now build app
command:- flutter build apk
After creating the APK and deploying it to the App Store or actual device. The app name will be shown in two lines
If you face any issue, please comment below, we will reply soon