simple_icons 10.1.1 copy "simple_icons: ^10.1.1" to clipboard
simple_icons: ^10.1.1 copied to clipboard

The Simple Icon pack available as Flutter Icons. Provides over 1500 Free SVG icons for popular brands.

example/lib/main.dart

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

void main() {
  runApp(MyApp());
}

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return const MaterialApp(
      title: 'Flutter Demo',
      home: MyHomePage(),
    );
  }
}

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

  @override
  Widget build(BuildContext context) {
    const double iconSize = 50;
    return MaterialApp(
      home: Scaffold(
          body: SingleChildScrollView(
        child: Column(
          children: [
            Icon(
              SimpleIcons.apple,
              color: Colors.red,
              size: iconSize,
            ),
            Icon(
              SimpleIcons.trakt,
              color: Colors.blue,
              size: iconSize,
            ),
            Icon(
              SimpleIcons.themoviedatabase,
              color: Colors.blue,
              size: iconSize,
            ),
            Icon(
              SimpleIcons.imdb,
              color: Colors.blue,
              size: iconSize,
            ),
          ],
        ),
      )),
    );
  }
}
112
likes
0
pub points
95%
popularity

Publisher

verified publisherteavelopment.com

The Simple Icon pack available as Flutter Icons. Provides over 1500 Free SVG icons for popular brands.

Homepage
Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on simple_icons