how to change title bar icon in flutter desktop

Issue this is how I change the title but can’t change the icon. void main() { WidgetsFlutterBinding.ensureInitialized(); if (Platform.isWindows || Platform.isLinux || Platform.isMacOS) { setWindowTitle(‘Title’); // setWindowMinSize(const Size(20, 20)); setWindowMaxSize(Size.infinite); } runApp(new MyApp()); } Solution To change the default Icon

Continue reading