iconly_plus 1.0.7 copy "iconly_plus: ^1.0.7" to clipboard
iconly_plus: ^1.0.7 copied to clipboard

A modified version of Iconly pack to support newer Dart and Flutter version updates.

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),
          ],
        ),
      ),
    );
  }
}
3
likes
160
points
140
downloads

Documentation

API reference

Publisher

unverified uploader

Weekly Downloads

A modified version of Iconly pack to support newer Dart and Flutter version updates.

Repository (GitHub)
View/report issues

License

MIT (license)

Dependencies

flutter

More

Packages that depend on iconly_plus