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

The icons plus package offers a convenient collection of popular icon packs, including 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: Home()));

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

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      body: ListView(
        children: [
          Icon(Bootstrap.bootstrap),
          Icon(BoxIcons.bxl_google),
          Icon(BoxIcons.bxl_github),
          Icon(BoxIcons.bxs_mobile),
          Icon(EvaIcons.twitter),
          Flag(Flags.united_states_of_america),
          Icon(FontAwesome.microsoft),
          Icon(HeroIcons.heart),
          Icon(Iconsax.google_play),
          Icon(IonIcons.logo_android),
          Icon(LineAwesome.youtube),
          Logo(Logos.firebase),
          Icon(PixelArtIcons.git_merge),
          Icon(OctIcons.git_compare_24),
        ],
      ),
    );
  }
}
671
likes
160
points
9.6k
downloads

Publisher

verified publisherrahulchouhan.me

Weekly Downloads

The icons plus package offers a convenient collection of popular icon packs, including Bootstrap, Font Awesome, Eva Icons, Line Awesome, Ionicons, and many more.

Homepage
Repository (GitHub)

Documentation

API reference

License

MIT (license)

Dependencies

flutter, flutter_svg

More

Packages that depend on icons_plus