iconoir_flutter 7.10.1 copy "iconoir_flutter: ^7.10.1" to clipboard
iconoir_flutter: ^7.10.1 copied to clipboard

Flutter library for Iconoir, the biggest open source icon library with tons of free icons.

Iconoir - Flutter #

Pub Version Pub Popularity License

Iconoir is an open-source library with 1300+ unique SVG icons, designed on a 24x24 pixels grid. No premium icons, no email sign-up, no newsletters.

iconoir_flutter is an open source package that exports these icons as Flutter widgets (flutter_svg) that can be used in all of your Flutter projects.

Installation #

flutter pub add iconoir_flutter

Usage #

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

void main() {
  runApp(const App());
}

class App extends StatelessWidget {
  const App({ super.key });

  @override
  Widget build(BuildContext context) {
    return const MaterialApp(
      home: DemoPage(),
    );
  }
}

class DemoPage extends StatelessWidget {
  const DemoPage({ super.key });

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      body: Container(
        child: const Iconoir(),
      ),
    );
  }
}

Default values for the most common props are given below:

Prop name Default value
color "currentColor"
width "1.5em"
height "1.5em"

Icon names #

The Flutter widges are named as PascalCase variations of their reference names (i.e. airplane-helix-45deg becomes AirplaneHelix45deg).

19
likes
140
points
2.47k
downloads

Publisher

verified publishericonoir.com

Weekly Downloads

Flutter library for Iconoir, the biggest open source icon library with tons of free icons.

Homepage
Repository (GitHub)
View/report issues
Contributing

Documentation

API reference

Funding

Consider supporting this project:

opencollective.com

License

MIT (license)

Dependencies

flutter, flutter_svg

More

Packages that depend on iconoir_flutter