# 8.2 Change App Icons & Images

## 8.2.1 Change App Icon

The icon should be in **.png** format.

> * Go to the **assets/images** and delete the default icon (i**con.png**).
> * Now upload your app icon as png in the **assets/images** folder and rename it to **icon.png**
> * Now run the following command on the terminal:

```
flutter pub get
flutter pub run flutter_launcher_icons:main
```

This command will create an android & iOS icons for your app.

{% hint style="info" %}
That’s it. For more info, visit this [site](https://pub.dev/packages/flutter_launcher_icons#-readme-tab-).
{% endhint %}

***

## 8.2.2 Change App Logo

The logo should be in **.png** transparent format.

> * Go to the **assets/images** and delete the default logo (**logo.png**).
> * Now upload your app icon as png in the **assets/images** folder and rename it to **logo.png**

***

## 8.2.3 Change Splash Icon

The splash icon should be in **.png** format.

> * Go to the **assets/images** and delete the default splash icon (**splash.png**).
> * Now upload your app icon as png in the **assets/images** folder and rename it to **spash.png**

***

## 8.2.4 Change On-Boarding Images

These images must be in **.svg** format. We have used images from the following site: [https://storyset.com/](https://storyset.com/?fbclid=iwar0xg3xecpfvfv_lqopgfic7c6-cdkh7mgdd4ylcxwfkyn4alordhk84hso). You can get the images from there too.

* Select your 3 images and rename them to **inro\_1.svg, intro\_2.svg** and **intro\_3.svg**.
* Go to the **assets/images** folder and paste and replace with the existing images.

{% hint style="info" %}
You can disable the on-boarding screen from the app if you want. You can do that directly from the admin panel. If so, you don't have to do this step.&#x20;
{% endhint %}
