The Iconic package provides a collection of icons that can be easily integrated into your Flutter applications. With a simple installation process and intuitive usage, you can enhance your app's user interface by incorporating eye-catching icons.
The icons included in the Iconic package are designed by FreePik and Flaticons. These icons are original creations and are provided as part of the Iconic package to enhance the visual appeal of your Flutter applications.
to see all the icons included in the package, click here
Include Iconic in your pubspec.yaml file:
dependencies:
iconic: ^0.1.0
If your IDE doesn't do it automatically, run:
flutter pub get
Import the package in your Flutter file and use Icon to get the actual icon widget:
import 'package:iconic/iconic.dart';
Icon(Iconic.home);