Iconly Plus 🚀 🇯🇴

Iconly Plus Banner

A modern, optimized, and fully updated Flutter package for using Iconly Icons. This version is built to fully support newer Dart (3.0.0+) and Flutter versions, preventing strict IconData class conflicts.


🇯🇴 Developed & Maintained By

This package was modernised and is proudly maintained by Mohammad Al-Hajjeeh from Jordan 🇯🇴.


💻 Installation

Add iconly_plus to your pubspec.yaml file:

dependencies:
  iconly_plus: ^1.0.7

🛠 Usage

Import the package and use it in your Flutter app:

import 'package:flutter/material.dart';
import 'package:iconly_plus/iconly_plus.dart';

class MyWidget extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: const Text('Iconly Plus Example'),
      ),
      body: Center(
        child: Row(
          mainAxisAlignment: MainAxisAlignment.center,
          children: [
            // Light Style
            Icon(IconlyLight.addUser, color: Colors.blue, size: 30),
            const SizedBox(width: 20),
            // Bold Style
            Icon(IconlyBold.heart, color: Colors.red, size: 30),
            const SizedBox(width: 20),
            // Broken Style
            Icon(IconlyBroken.camera, color: Colors.green, size: 30),
          ],
        ),
      ),
    );
  }
}

Libraries

iconly_plus
A Flutter icon pack library providing customizable Iconly icons in Bold, Broken, and Light styles.