feather_icon_font 1.0.0 copy "feather_icon_font: ^1.0.0" to clipboard
feather_icon_font: ^1.0.0 copied to clipboard

Feather icons packaged as a Flutter icon font.

example/feather_icon_font_example.dart

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

void main() {
  runApp(const _ExampleApp());
}

class _ExampleApp extends StatelessWidget {
  const _ExampleApp();

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(title: const Text('Feather Icon Font Example')),
        body: const Center(
          child: Icon(FeatherIcons.activity, size: 48),
        ),
      ),
    );
  }
}
1
likes
140
points
21
downloads

Documentation

API reference

Publisher

verified publisherkeepascent.com

Weekly Downloads

Feather icons packaged as a Flutter icon font.

Repository (GitHub)
View/report issues

License

MIT (license)

Dependencies

flutter

More

Packages that depend on feather_icon_font