3000+ Pixel-perfect svg unicons for your next flutter project.
Special thanks to Unicons, vue-unicons and Iconsax authors without whom this project would not have been carried out. 🙏
You can get the latest gallery release here.
# Add flukit_icons as a dependency to your pubspec.yaml
dependencies:
flukit_icons:
git:
url: https://github.com/charles9904/flukit_icons.git
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),
],
),
),
);
}
}
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.
flukit_icons
is a fully open-source project, and contributions are welcome.Always happy if anyone wants to help to improve this package! 😊
If you need any features Please open an issue so that we can discuss your feature request 🙏
Made with 💙 in Togo.