5000+ free Flutter icons in 7 styles, ready to use in your projects.
A vast collection of over 5000 high-quality icons
Broken, Filled, Outlined, Twotone, Bulk, Country icons and Payement icons - choose your style
Optimized for Flutter with easy-to-use IconData classes and widgets
Add the dependency to yourpubspec.yaml
:
flutter pub add amazing_icons
Import the package and use the icons in your Flutter widgets:
import 'package:amazing_icons/amazing_icons.dart';
// Simple usage for broken, filled and outlined styles
Icon(AmazingIconBroken.home)
// Custom color and size
Icon(
AmazingIconFilled.heart,
color: Colors.red,
size: 32,
)
// Bulk style (with opacity layer)
SvgBulk.home(size: 24, color: Colors.blue)
// TwoTone style (with two opacity levels)
SvgTwoTone.heart(size: 24, color: Colors.red)
// Country icons
SvgCountry.fromCountryCode("fr", size: 25, shape: IconShape.rounded),
// Payment icons
SvgPayment.google_pay(size: 50)