Skip to content

Latest commit

 

History

History
106 lines (68 loc) · 2.2 KB

File metadata and controls

106 lines (68 loc) · 2.2 KB

Flukit_icons

3000+ Pixel-perfect svg unicons for your next flutter project.


flukit_icons


Special thanks to Unicons, vue-unicons and Iconsax authors without whom this project would not have been carried out. 🙏


Demo


You can get the latest gallery release here.


Installation


# Add flukit_icons as a dependency to your pubspec.yaml

dependencies:
  flukit_icons:
    git:
      url: https://github.com/charles9904/flukit_icons.git

Usage


import 'package:flukit_icons/flukit_icons.dart';
import 'package:flutter/material.dart';

class MyBeautifulApp extends StatelessWidget {
  const MyBeautifulApp({Key? key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return SafeArea(
      child: Center(
        child: Row(
          mainAxisAlignment: MainAxisAlignment.center,
          children: [
            FluIcon(icon: FluIcons.githubUnicon),
            FluIcon(icon: FluIcons.flash, style: FluIconStyles.bulk),
          ],
        ),
      ),
    );
  }
}

Options


Name Description Type default value
icon * Icon to be displayed FluIconData -
style Icon style. can be linear, broken, twotone or bulk. Some icons doesn't have all fourth style. Refer to the gallery to know more FluIconStyles FluIconStyles.twotone
size Icon size double 24
strokewidth Icon strokewidth double 1.5
color ? icon color Color Colors.black

Note: * marked options are required and ? marked options are nullable.


Contribution


flukit_icons is a fully open-source project, and contributions are welcome.Always happy if anyone wants to help to improve this package! 😊


Feature requests


If you need any features Please open an issue so that we can discuss your feature request 🙏




Made with 💙 in Togo.