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

outdated

Flutter implementation of the Mono Icons icons pack.

example/lib/main.dart

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

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

class MyApp extends StatelessWidget {
  const MyApp({Key? key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Mono Icons',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: const MyHomePage(),
    );
  }
}

class MyHomePage extends StatelessWidget {
  const MyHomePage({Key? key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: const Text('Mono Icons'),
      ),
      body: const Center(
        child: Icon(MonoIcons.remove),
      ),
    );
  }
}
1
likes
0
points
0
downloads

Publisher

unverified uploader

Weekly Downloads

Flutter implementation of the Mono Icons icons pack.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on mono_icons