icons_plus 2.0.1 copy "icons_plus: ^2.0.1" to clipboard
icons_plus: ^2.0.1 copied to clipboard

A collection of popular icon packs is available in icons_plus. Such as bootstrap, font awesome, eva icons, line awesome, ionicons, and many more.

example/example.md

import 'package:flutter/material.dart';
import 'package:icons_plus/icons_plus.dart';

void main() {
  runApp(
    const MaterialApp(
      home: Home(),
    ),
  );
}

class Home extends StatelessWidget {
  const Home({Key? key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      body: ListView(
        children: [
          const Icon(Bootstrap.google, size: 35),
          const Icon(FontAwesome.android, size: 35),
          const Icon(LineAwesome.angular, size: 35),
          const Icon(EvaIcons.github, size: 35),
          const Icon(IonIcons.logo_gitlab, size: 35),
          FlagIcon(FlagIcons.india),
          BrandLogo(BrandLogos.apple),
        ],
      ),
    );
  }
}
617
likes
140
points
9.69k
downloads

Publisher

verified publisherrahulchouhan.me

Weekly Downloads

A collection of popular icon packs is available in icons_plus. Such as bootstrap, font awesome, eva icons, line awesome, ionicons, and many more.

Homepage
Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter, flutter_svg

More

Packages that depend on icons_plus