icons_plus 3.0.0 copy "icons_plus: ^3.0.0" to clipboard
icons_plus: ^3.0.0 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(MaterialApp(home: IconsPlus()));

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

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      body: ListView(
        children: [
          Icon(Bootstrap.google),
          Icon(BoxIcons.bx_run),
          Icon(BoxIcons.bxl_firebase),
          Icon(BoxIcons.bxs_wine),
          Icon(EvaIcons.google_outline),
          Icon(EvaIcons.github),
          Icon(IonIcons.logo_google_playstore),
          Icon(LineAwesome.google_drive),
          Icon(PixelArtIcons.heart),
          Icon(FontAwesome.google_wallet),
          Flag(Flags.united_states_of_america),
          Logo(Logos.flutter),
        ],
      ),
    );
  }
}
610
likes
150
points
10.9k
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