Originally published on bendyworks.com . For this festive day of Christmas, I'm going to do something more fun and add a fancy icon. For android I will be using an adaptive icon so that it looks good in any shape and has a nice wiggle of movement. A big thank you goes to @tommy_emo_ for creating this awesome design. There is a nice flutter_launcher_icons package that makes the technical implementation easy. To start, require flutter_launcher_icons as a dev_dependency in pubspec.yaml . Then there will be a new flutter_icons key added with several values. flutter_icons : android : true ios : true image_path_android : assets/icon/ic_launcher_xxxhdpi.png image_path_ios : assets/icon/ios.png adaptive_icon_background : assets/icon/ic_background.png adaptive_icon_foreground : assets/icon/ic_foreground.png android and ios set to true sp...