iconex_flutter 1.0.2 copy "iconex_flutter: ^1.0.2" to clipboard
iconex_flutter: ^1.0.2 copied to clipboard

A Flutter implementation of the Iconex icon collection originally designed by Dmitry Mikhaylov.

Iconex Flutter #

License: MIT License: CC BY 4.0

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)

Acknowledgements #


Thanks to Dmitry Mikhaylov and Tatyana Sheplyakova for creating the Iconex icons and sharing them with the design community.

Iconex Figma Project

0
likes
0
points
85
downloads

Publisher

verified publisherbudggy.com

Weekly Downloads

A Flutter implementation of the Iconex icon collection originally designed by Dmitry Mikhaylov.

Repository (GitHub)
View/report issues

Topics

#icons #svg #ui #design

License

unknown (license)

Dependencies

flutter

More

Packages that depend on iconex_flutter