Last updated:
0 purchases
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
copied to clipboard
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),
),
);
}
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.