huge_icons_flutter
28+ Pixel-perfect svg HugeIcons for your next Flutter project inspired by HugeIcons Stroke Free Icons
Note:
Currently contains 28+ icons from the Add-Remove section. Still a work in progress. More icons will be added each week.
Installation
Add dependency to your pubspec.yaml
dependencies:
huge_icons_flutter: #version (current is 0.0.1)
Usage
import 'package:huge_icons_flutter/huge_icons_flutter.dart';
class Demo extends StatelessWidget{
@override
Widget build(BuildContext context) {
return SafeArea(
child: Column(
children: [
HugeIcons(HugeIcon.add),
HugeIcons(HugeIcon.delete2),
]
)
);
}
}
Options
Name | Type | Description | default value |
---|---|---|---|
size | double | Icon size | 24 |
color | Color | icon color | Colors.black |
fit | BoxFit | How icon should be inscribed into container | BoxFit.contain |
Licence
Refer to HugeIcons License here