hugeicons 0.0.3 copy "hugeicons: ^0.0.3" to clipboard
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,
              ),
            ],
          ),
        ),
      ),
    );
  }
}
303
likes
0
points
9.39k
downloads

Publisher

verified publisherhugeicons.com

Weekly Downloads

HugeIcons is a comprehensive icon library for Flutter, providing both free and pro versions with thousands of icons. Ideal for enhancing UI design.

Homepage

License

unknown (license)

Dependencies

flutter

More

Packages that depend on hugeicons