Flutter Iconoir Icons

PUB Version PUB Monthly Downloads PUB License

Iconoir is an open source library with 900+ SVG Icons. No premium icons, no email sign-up, no newsletters. You can browse the full suite of icons at iconoir.com.

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 });

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

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

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

Default values for the most common props are given below:

Prop nameDefault value
color"currentColor"
width"1.5em"
height"1.5em"

Icon names

For the most part, the Flutter widgets are named as PascalCase variations of their reference names (i.e. add-circle-outline becomes AddCircleOutline). However, some names have been altered slightly either because they start with numerical digits, which would lead to invalid Flutter widgets names, or because they are organisations which use PascalCase in their brand names, such as GitHub. The altered names are as follows:

Iconoir NameFlutter Widgets
1st-medalMedal1St
4k-displayDisplay4K
4x4-cellCell4X4
360-viewView360
githubGitHub
github-outlineGitHubOutline
gitlab-fullGitLabFull
linkedinLinkedIn
tiktokTikTok
youtubeYouTube
Iconoir Logo
Parts of this content are ©2020-2023 by individual Iconoir contributors. Content available under a MIT License.