flutter_awesome_icon 0.0.1 copy "flutter_awesome_icon: ^0.0.1" to clipboard
flutter_awesome_icon: ^0.0.1 copied to clipboard

A newA Flutter icon pack with 5000+ icons, each available in 6 beautiful styles – Bold, Bulk, Linear, Outline, Broken, and TwoTone.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:flutter_awesome_icon/awesome_icons.dart';

void main() {
  runApp(const MyApp());
}

class MyApp extends StatelessWidget {
  const MyApp({super.key});

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Awesome Icons Demo',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: const IconDemoPage(),
    );
  }
}

class IconDemoPage extends StatelessWidget {
  const IconDemoPage({super.key});

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(title: const Text('Awesome Icons Example')),
      body: Padding(
        padding: const EdgeInsets.all(16.0),
        child: GridView.count(
          crossAxisCount: 3,
          crossAxisSpacing: 16,
          mainAxisSpacing: 16,
          children: [
            AwesomeIconsBold(
              icon: AwesomeIcons.helpHeartAddBold,
              size: 15,
              fill: Colors.blue,
            ),
            AwesomeIconsBulk(
              icon: AwesomeIcons.helpHeartAddBulk,
              size: 15,
              colors: [Colors.blue, Colors.blue.shade100],
            ),
            AwesomeIconsLinear(
              icon: AwesomeIcons.helpHeartAddLinear,
              size: 15,
              fill: Colors.blue,
              strokeColor: Colors.black,
            ),
            AwesomeIconsOutline(
              icon: AwesomeIcons.helpHeartAddBold,
              size: 15,
              strokeColor: Colors.blue,
            ),
            AwesomeIconsBroken(
              icon: AwesomeIcons.helpHeartAddBold,
              size: 15,
              fill: Colors.blue,
              strokeColor: Colors.black,
              strokeWidth: .7,
            ),
            AwesomeIconsTwotone(
              icon: AwesomeIcons.helpHeartAddBold,
              size: 15,
              strokeColor: Colors.black,
              strokeWidth: .7,
            ),
          ],
        ),
      ),
    );
  }
}
2
likes
150
points
33
downloads

Publisher

unverified uploader

Weekly Downloads

A newA Flutter icon pack with 5000+ icons, each available in 6 beautiful styles – Bold, Bulk, Linear, Outline, Broken, and TwoTone.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter, flutter_svg

More

Packages that depend on flutter_awesome_icon