iconly_plus 1.0.7
iconly_plus: ^1.0.7 copied to clipboard
A modified version of Iconly pack to support newer Dart and Flutter version updates.
Iconly Plus 🚀 🇯🇴 #
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 🇯🇴.
- GitHub: @mohammedhajieh
- LinkedIn: Mohammed Hajieh
- Portfolio: mohammedhajieh.github.io/Portfolio
💻 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),
],
),
),
);
}
}