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

outdated

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),
        ],
      ),
    );
  }
}
460
likes
0
pub points
98%
popularity

Publisher

verified publisherrahulchouhan.me

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

License

unknown (LICENSE)

Dependencies

flutter, flutter_svg

More

Packages that depend on icons_plus