iconoir/packages/iconoir-flutter
Pascal Jufer 5f0007ce9a
Remove flutter assets
Doesn't work with symlink either, so we simply drop that
2023-10-29 10:31:37 +01:00
..
example Split variants (#368) 2023-10-29 00:33:17 +02:00
test feat(flutter): create package (#173) 2022-07-05 10:24:49 -04:00
.gitignore feat(flutter): create package (#173) 2022-07-05 10:24:49 -04:00
.metadata feat(flutter): create package (#173) 2022-07-05 10:24:49 -04:00
.pubignore chore: don't track source files anymore (#360) 2023-09-26 02:35:33 +02:00
analysis_options.yaml fix: disable file_names lint because it appears to be bugged with the 3d files 2023-01-26 14:29:20 -05:00
CHANGELOG.md Release Version v7.0.0 2023-10-29 09:25:55 +00:00
LICENSE feat(flutter): create package (#173) 2022-07-05 10:24:49 -04:00
pubspec.yaml Remove flutter assets 2023-10-29 10:31:37 +01:00
README.md chore: update & align readmes 2023-09-27 23:50:19 +02:00

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

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 Name Flutter Widgets
1st-medal Medal1St
4k-display Display4K
4x4-cell Cell4X4
360-view View360
github GitHub
github-outline GitHubOutline
gitlab-full GitLabFull
linkedin LinkedIn
tiktok TikTok
youtube YouTube