InstaHaul
  • Introduction
  • Usage Flows (FlowCharts)
  • Firebase
    • Firebase
    • Firebase firestore database
    • Firebase Security
    • Firebase Storage
    • Firestore indexes
    • Chat & Live tracking
  • Backend
    • Prerequisite
    • VPS/Shared Hosting
    • Installation
    • Composer & Node Packages
    • Database Configuration
    • GUI Installer
    • Timezone
    • Firebase
    • Web Notification
    • Firebase Forgot password
    • Change Backend Color
    • Reskin Mobile App
    • Terminal
      • Commands
    • Screenshots
    • Order schedule
    • CRON job
    • Clear Data (Users/Orders etc)
    • Email Server Settings
    • SMS Gateway
    • Payment Gateways
    • Webhooks - Payment gateway
    • Language / Translation
    • HOW TO UPDATE
    • In-App Live chat/support
    • Geocoding and Place search
    • Features
      • Firebase/Notification Delay
      • Fleet Management
      • Loyalty points
      • Home Screen Design
      • Featured Vendors
      • Trip recalculation/Outstanding payments
      • Switch between Taxi/Regular Driver
      • Data Translation - Backend
  • Flutter App
    • Getting Started
    • Steps
    • Directory Structure
    • Change App Name & ID
    • Change App icon & splash
    • App Color / Theme
    • Connect To Backend
    • Firebase
    • Firebase Auth - Phone
    • Firebase Phone OTP - Android
    • Firebase Phone OTP - iOS
    • Firebase Notification iOS
    • Share link - Firebase dynamic link
    • Social Media Login
      • Google login
      • Facebook Login
      • Sign-In with Apple
    • Google Map
    • Change App Language
    • Notification Sound
    • Custom Translation
    • Change App Font
    • Running on VS Code
    • Running on Android Studio
    • Generate Android Release App
    • Upload to Apple App Store
    • Screenshots
  • Demo Accounts
  • FAQs
    • Backend Image not working
    • Backend Backup not working
    • Upgrade without losing data
    • Backend Rollback
    • Blank Home screen
    • Custom Token
    • Product price zero(0) in details
    • Auto-cancel Not working
    • Pharmacy vendor
    • Vendor default rating
    • App logins
    • Error ==> type 'String' is not a subtype of type 'int'
    • NDK version error
    • Push Notification
    • Delivery Zone Map error
    • HOW TO UPDATE ADMINEND
    • Driver app rejected by Google
    • Cron job error
    • Auth pages Not working - App
  • HOW-TO
    • Onboarding Settings
    • Earning
      • Drivers
    • Enforce CASH Payment For Delivery Fee Only
    • System Contact Email
    • Driver Matching Flow
  • Extensions
    • Driver tracking extensions
    • Paymongo Gateway
    • Mercadopago Gateway
    • Nagad [Bangladeshi]
    • Instamojo - Payment
    • Paytrail
    • Paymaya Gateway
    • Emailer
    • External Notifier
      • Slack Setup
      • Telegram Setup
  • Upgrades
    • How to update
    • Important: Backend VPS/Shared hosting
    • 1.0.1
    • 1.1.00
    • Change logs
Powered by GitBook
On this page
  • Change App Icon
  • ANDROID
  • iOS
  • Change Splash screen
  • ANDROID
  • iOS
  • Using Command (Very Easy)
  • App Logo
  • Splash Screen
  1. Flutter App

Change App icon & splash

PreviousChange App Name & IDNextApp Color / Theme

Change App Icon

ANDROID

Create your own icon and replace the launcher_icon.png icons files in each folder according to the image size.

  1. /android/app/src/main/res/mipmap-hdpi/

  2. /android/app/src/main/res/mipmap-mdpi/

  3. /android/app/src/main/res/mipmap-xhdpi/

  4. /android/app/src/main/res/mipmap-xxhdpi/

  5. /android/app/src/main/res/mipmap-xxxhdpi/

iOS

Create your own icon and name it by size, replacing the icons in the folder below.

/ios/Runner/Assets.xcassets/AppIcon.appiconset/

Change Splash screen

ANDROID

Create your own splash image and replace the splash.png files in each folder according to the image size.

  • /android/app/src/main/res/drawable-hdpi/

  • /android/app/src/main/res/drawable-mdpi/

  • /android/app/src/main/res/drawable-xhdpi/

  • /android/app/src/main/res/drawable-xxhdpi/

  • /android/app/src/main/res/drawable-xxxhdpi/

Note: To change Splash Screen Background Color, go to android/app/src/main/res/values/colors.xml and change the splash_color value

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <color name="splash_color">#YOUR_COLOR_CODE</color>
</resources>

iOS

Create your own splash image and name it by size, replacing the images in the folder below.

/ios/Runner/Assets.xcassets/LaunchImage.imageset/

Using Command (Very Easy)

NOTE: Please make a copy of the project before following the instructions below. Just incase the commands doesn't work as intended.

App Logo

To change the app logo of the app, follow the steps below for Android & iOS.

  • Go to assets folder

  • Change the app_icon.png to that of your choice. Please make sure the name remain the same.

  • You can import your custom image and rename it to app_icon.png

  • Go to pubspec.yaml

  • Find this code:

flutter_icons:
  android: "launcher_icon"
  ios: true
  image_path: "assets/images/app_icon.png"
  • Then run this command in your terminal to update the app_icon of the app.

flutter pub get
flutter pub run flutter_launcher_icons:main

Splash Screen

To change the app splash of the app, follow the steps below for Android & iOS.

  • Go to assets folder

  • Change the splash_icon.png to that of your choice. Please make sure the name remain the same.

  • You can import your custom image and rename it to splash_icon.png

  • Go to flutter_native_splash.yaml

  • Find this code:

flutter_native_splash:
  image: "assets/images/splash_icon.png"
  color: "21a179"
  • Also run this command in your terminal to update the splash screen of the app.

flutter pub get
flutter pub run flutter_native_splash:create