iconoir_flutter 7.7.0 copy "iconoir_flutter: ^7.7.0" to clipboard
iconoir_flutter: ^7.7.0 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).

9
likes
120
pub points
84%
popularity

Publisher

verified publishericonoir.com

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