mrrhak / icons_launcher

Icons Launcher - A command-line tool that simplifies the task of updating your Flutter app's launcher icon. Full flexibility allows you to only update the launcher icon for specific platforms as needed.
https://pub.dev/packages/icons_launcher
MIT License
116 stars 11 forks source link

[BUG] White background for the launcher icon #67

Closed sudheersuri closed 4 weeks ago

sudheersuri commented 1 month ago

Version: 3.0.0

It's generating white background

image

dev_dependencies:
  flutter_test:
    sdk: flutter
  icons_launcher: ^3.0.0

icons_launcher:
  image_path: 'assets/images/icon.png'
  adaptive_background_color: '#1B1B1B'
  platforms:
    android:
      enable: true
mrrhak commented 1 month ago

Hi @sudheersuri, look like your configuration adaptive_background_color setup is incorrect. Please try this instead

dev_dependencies:
  flutter_test:
    sdk: flutter
  icons_launcher: ^3.0.0

icons_launcher:
  image_path: 'assets/images/icon.png'
  platforms:
    android:
      enable: true
      adaptive_background_color: '#1B1B1B'
github-actions[bot] commented 4 weeks ago

Without additional information, we are unfortunately not sure how to resolve this issue. We're therefore reluctantly going to close it. Feel free to open a new issue with all the required information provided, including a minimal, reproducible sample. Make sure to diligently fill out the issue template. Thanks for your contribution.