mdi 0.1.1 copy "mdi: ^0.1.1" to clipboard
mdi: ^0.1.1 copied to clipboard

outdated

Material Design Icons for Flutter from the materialdesignicons.com community.

example/mdi.dart

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

void main() => runApp(MyApp());

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'MyApp',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: Column(
        children: <Widget>[
          // Use the camel-cased form of icon name.
          Icon(Mdi.bell),
          Text('Ring'),
        ],
      ),
    );
  }
}
30
likes
0
pub points
90%
popularity

Publisher

verified publishervyperium.com

Material Design Icons for Flutter from the materialdesignicons.com community.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on mdi