hugeicons 0.0.7 copy "hugeicons: ^0.0.7" to clipboard
hugeicons: ^0.0.7 copied to clipboard

4,000+ Free Flutter Icons. Created by Hugeicons Pro Icon Library. Hugeicons Pro the most beautiful icon library for developers.

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.strokeRoundedAirplaneSeat,
                color: Colors.red,
                size: 100.0,
              ),
            ],
          ),
        ),
      ),
    );
  }
}
199
likes
160
pub points
94%
popularity

Publisher

verified publisherhugeicons.com

4,000+ Free Flutter Icons. Created by Hugeicons Pro Icon Library. Hugeicons Pro the most beautiful icon library for developers.

Homepage
Repository (GitHub)
View/report issues

Documentation

Documentation
API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on hugeicons