Amazing Icons

Amazing Icons Logo

5000+ free Flutter icons in 7 styles, ready to use in your projects.

Features

5000+

Icons

A vast collection of over 5000 high-quality icons

7

Styles

Broken, Filled, Outlined, Twotone, Bulk, Country icons and Payement icons - choose your style

100%

Flutter

Optimized for Flutter with easy-to-use IconData classes and widgets

Installation

Add the dependency to yourpubspec.yaml :

flutter pub add amazing_icons

Use

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)