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

icons_plus is a package that comes with several popular icons packages.

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: Container(
        height: MediaQuery.of(context).size.height,
        width: MediaQuery.of(context).size.width,
        child: Column(
          mainAxisAlignment: MainAxisAlignment.spaceEvenly,
          crossAxisAlignment: CrossAxisAlignment.center,
          children: [
            const Icon(Bootstrap.google, size: 35),
            const Icon(FontAwesome.google, size: 35),
            const Icon(LineAwesome.google, size: 35),
            FlagIcon(FlagIcons.india),
            BrandLogo(BrandLogos.google),
          ],
        ),
      ),
    );
  }
}
610
likes
120
points
10.9k
downloads

Publisher

verified publisherrahulchouhan.me

Weekly Downloads

icons_plus is a package that comes with several popular icons packages.

Homepage
Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter, flutter_svg

More

Packages that depend on icons_plus