francishero / koukicons_flutter

πŸͺ Colorful Icons for your Flutter App

Home Page:https://pub.dev/packages/koukicons

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Koukicons

πŸͺ This package provides +700 Colorful Icons for Flutter Apps.

Screenshot

How to use

To use this plugin, add koukicons as a dependency in your pubspec.yaml file.

That's it! start using Your Icons:

  1. First you need to import the icons you need (List of icons Here πŸͺ) - For example:
import 'package:koukicons/home.dart';
import 'package:koukicons/gift.dart';
import 'package:koukicons/pin.dart';
\\ import more icons here...
  1. then you need to call your imported Icons - (you can also specify width / height / color) :
...
Column(
  children: <Widget>[
    KoukiconsHome(),
    KoukiconsGift(height: 100.0),
    KoukiconsPIN(width: 70.0, color: Colors.red),
  ],
),

Example

import 'package:koukicons/like.dart';
...
Column(
  children: <Widget>[
    Text("I"),
    KoukiconsLike(height: 100.0),
    Text("You"),
  ],
),

List of Icons

To explore all the icons, Click Here πŸͺ

App size

Q: There are many icons. My app will be very big if i use this package?

A: No, Don't worry. Your app will import only the icons that you are using. so your app size will be so small.

How to add new icons to this library

  1. Fork this repository

  2. Copy/paste your new SVG file inside "icons" folder ( Icon name must be lowercase letters, no numbers in first character & no special character )

  3. Inside "Tool" folder, run "generator.py" (requires python3)

python generator.py
  1. Pull request and eat some cookies πŸͺπŸͺπŸͺ

About

πŸͺ Colorful Icons for your Flutter App

https://pub.dev/packages/koukicons

License:MIT License


Languages

Language:Dart 99.7%Language:Python 0.2%Language:Objective-C 0.0%Language:Java 0.0%