hugeicons 0.0.3
hugeicons: ^0.0.3 copied to clipboard
HugeIcons is a comprehensive icon library for Flutter, providing both free and pro versions with thousands of icons. Ideal for enhancing UI design.
example/lib/main.dart
import 'package:flutter/material.dart';
import 'package:hugeicons/hugeicons.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: Text('HugeIcons Example'),
),
body: Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
HugeIcon(
icon: HugeIcons.strokeRoundedHome01,
color: Colors.blue,
size: 50.0,
),
HugeIcon(
icon: HugeIcons.strokeRoundedHome02,
color: Colors.red,
size: 100.0,
),
],
),
),
),
);
}
}