Flutter Assets Changes
1.Color Change
File Location : project/lib/common/app_colors.dart
just update the below parameter to change the app color
- Color primary = const Color(0xffFCB13D);
- Color secondary = const Color(0xffFCB13D);
button and button text color update the below parameter to change color
- Color buttonColor = const Color(0xFF16AD70);
- Color buttonTextColor = const Color(0xFFFFFFFF);
2.Icons Change
Android
- replace icons images in following folders in given name
- project/assets/images/ - logo.png
- project/assets/images/ - icon.png
- project/assets/images/ - loader_image.png
- project/android/app/src/main/res/mipmap-hdpi - ic_launcher.png (72x72)
- project/android/app/src/main/res/mipmap-mdpi - ic_launcher.png (48x48)
- project/android/app/src/main/res/mipmap-xhdpi - ic_launcher.png (96x96)
- project/android/app/src/main/res/mipmap-xxhdpi - ic_launcher.png (144x144)
- project/android/app/src/main/res/mipmap-xxxhdpi - ic_launcher.png (192x192)
- project/android/app/src/main/res/drawable/ - logo.png
You can use this link for icon change
https://romannurik.github.io/AndroidAssetStudio/icons-launcher.html#foreground.type=image&foreground.space.trim=0&foreground.space.pad=0&foreColor=rgba(96%2C%20125%2C%20139%2C%200)&backColor=rgb(156%2C%2039%2C%20176)&crop=0&backgroundShape=circle&effects=none&name=ic_launcher
iOS
[email protected] - (20x20) x1 size - 20x20
[email protected] - (20x20) x2 size - 40x40
[email protected] - (20x20) x3 size - 60x60
[email protected] - (29x29) x1 size - 29x29
[email protected] - (29x29) x2 size - 58x58
[email protected] - (29x29) x3 size - 87x87
[email protected] - (40x40) x1 size - 40x40
[email protected] - (40x40) x2 size - 80x80
[email protected] - (40x40) x3 size - 120x120
[email protected] - (60x60) x2 size - 120x120
[email protected] - (60x60) x3 size - 180x180
[email protected] - (76x76) x1 size - 76x76
[email protected] - (76x76) x2 size - 152x152
[email protected] - (83.5x83.5) x2 size - 167x167
[email protected] - (1024x1024) x1 size - 1024x1024
3.Images Change
note: If you change a file, change the file name as previous file name
"project/assets/images/..."
4.Audio Change
note: If you change a file, change the file name as previous file name
"project/assets/audio/..."
