flutter_app_icons 0.0.3 flutter_app_icons: ^0.0.3 copied to clipboard
Dynamic App Icon, for a beginning this will only be for web favicon, because there is no way to change that with flutter, for later it is intended that we support app icons on Android and iOS.
import 'package:flutter/material.dart';
import 'package:flutter_app_icons/flutter_app_icons.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatefulWidget {
const MyApp({super.key});
@override
State<MyApp> createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
final _flutterAppIconsPlugin = FlutterAppIcons();
@override
void initState() {
super.initState();
_flutterAppIconsPlugin.setIcon(icon: 'favicon-failure.png');
}
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: const Text('Plugin example app'),
),
body: Center(
child: Text('Check favicon\n'),
),
),
);
}
}