dynamic_app_icon 0.0.1+1 dynamic_app_icon: ^0.0.1+1 copied to clipboard
Set any widget as an app icon! (macOS only)
Dynamic App Icon #
Set any widget as an app icon! (macOS only)
Example #
class Example extends StatelessWidget {
const Example({super.key});
@override
Widget build(BuildContext context) {
return const MaterialApp(
home: AppIcon(
icon: FlutterLogo(),
child: Scaffold(
body: Center(
child: Text('Flutter logo is now your app icon!'),
),
),
)
);
}
}
License #
MIT