mono_icons 1.0.0+2 mono_icons: ^1.0.0+2 copied to clipboard
Flutter implementation of the Mono Icons icons pack (https://github.com/mono-company/mono-icons).
Flutter implementation of the Mono Icons icons pack.
Installation #
You can install mono_icons
using pub, add this to your pubspec.yaml file:
dependencies:
mono_icons: ^1.0.0
Usage #
You can use mono icons with the Icon
Widget like this:
import 'package:mono_icons/mono_icons.dart';
...
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text('Mono Icons'),
),
body: const Center(
child: Icon(MonoIcons.remove),
),
);
}