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

300+ Free icons for your next project in 5 styles (Light, Bold, Broken) for flutter. Icons designed by piqo.

example/lib/main.dart

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

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

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Iconly Demo',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: Scaffold(
        body: SafeArea(
          child: Center(
            child: Column(
              children: [
                /// Icon Style Bold
                Icon(IconlyBold.user2),

                /// Icon Style Light
                Icon(IconlyLight.activity),

                /// Icon Style Broken
                Icon(IconlyBroken.user2),

                Icon(Icons.ac_unit)
              ],
            ),
          ),
        ),
      ),
    );
  }
}
96
likes
120
pub points
96%
popularity

Publisher

verified publishernerolab.dev

300+ Free icons for your next project in 5 styles (Light, Bold, Broken) for flutter. Icons designed by piqo.

Repository (GitHub)
View/report issues

Documentation

API reference

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on flutter_iconly