hugeicons 0.0.4 copy "hugeicons: ^0.0.4" to clipboard
hugeicons: ^0.0.4 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,
              ),
            ],
          ),
        ),
      ),
    );
  }
}
204
likes
0
pub points
94%
popularity

Publisher

verified publisherhugeicons.com

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