iconex_flutter 1.0.2
iconex_flutter: ^1.0.2 copied to clipboard
A Flutter implementation of the Iconex icon collection originally designed by Dmitry Mikhaylov.
Iconex Flutter #
A Flutter package that brings the Iconex icon set from Figma to Flutter.
Clean, modern, and consistent vector icons are optimized for app interfaces.
Quick Example #
import 'package:iconex_flutter/iconex_flutter.dart';
IconexIcon(Iconex.filled.home,
color: Colors.orange,
size: 24.0,
);
Installation #
Add to your pubspec.yaml:
dependencies:
iconex_flutter: ^1.0.1
Then run
flutter pub get
Usage #
import 'package:iconex_flutter/iconex_flutter.dart';
class Example extends StatelessWidget {
const Example({super.key});
@override
Widget build(BuildContext context) {
return Row(
mainAxisAlignment: MainAxisAlignment.center,
children: const [
Icon(Iconex.filled.home),
SizedBox(width: 12),
Icon(Iconex.light.search),
SizedBox(width: 12),
Icon(Iconex.broken.heart),
],
);
}
}
Light Icons #
// import the package
import 'package:iconex_flutter/iconex_flutter.dart';
// Use Iconex.light for the Light (Stroke) icon style
Icon(Iconex.light.home,
color: Colors.blue,
size: 24.0,
semanticLabel: 'Home',
),
Broken Icons #
// import the package
import 'package:iconex_flutter/iconex_flutter.dart';
// Use Iconex.broken for the Broken icon style
Icon(Iconex.broken.home,
color: Colors.blue,
size: 24.0,
semanticLabel: 'Home',
),
Filled Icons #
// import the package
import 'package:iconex_flutter/iconex_flutter.dart';
// Use Iconex.filled for the Filled icon style
Icon(Iconex.filled.home,
color: Colors.blue,
size: 24.0,
semanticLabel: 'Home',
),
License #
Package code: MIT License © Budggy, Inc.
Icons: Creative Commons Attribution 4.0 International (CC BY 4.0)
- © Dmitry Mikhaylov and Tatyana Sheplyakova
- Source: Iconex Figma Project
Acknowledgements #
Thanks to Dmitry Mikhaylov and Tatyana Sheplyakova for creating the Iconex icons and sharing them with the design community.
