feather_icon_font 1.0.0
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),
),
),
);
}
}