RedBrogdon / coolicons

The Coolicons icon pack for Flutter with over 400 icons available for your flutter project.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

codecov Test pub package PRs Welcome

coolicons

This flutter package allows you to use the Coolicons icon pack.

Made from Coolicons.

๐ŸŽ– Installation

In the dependencies: section of your pubspec.yaml, add the following line:

coolicons: ^1.0.0

๐ŸŽฎ Usage

import 'package:coolicons/coolicons.dart';

class MyAwesomeWidget extends StatelessWidget {
  Widget build(BuildContext context) {
    return Card(
        child: Column(
            mainAxisAlignment: MainAxisAlignment.center,
            children: <Widget>[
                Icon(Coolicons.Figma, size: 50.0),
                const SizedBox(height: 30.0),
                Text('Figma icon', textAlign: TextAlign.center),
            ],
        ),
    );
  }
}

Example

View the flutter app in the example directory

Screenshot

๐Ÿ› Bugs/Requests

If you encounter any problems feel free to open an issue. If you feel the library is missing a feature, please raise a ticket on Github and I'll look into it. Pull request are also welcome.

๐Ÿค“ Developer(s)

Abada Samuel Oghenero

About

The Coolicons icon pack for Flutter with over 400 icons available for your flutter project.

License:MIT License


Languages

Language:Dart 98.1%Language:Swift 1.3%Language:Kotlin 0.4%Language:Objective-C 0.1%