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

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

example/lib/main.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: Scaffold(
        body: Center(
          child: Column(
            mainAxisAlignment: MainAxisAlignment.center,
            crossAxisAlignment: CrossAxisAlignment.center,
            children: <Widget>[
              Icon(Mdi.bell),
              Text('Ring'),
            ],
          ),
        ),
      ),
    );
  }
}
30
likes
40
pub points
90%
popularity

Publisher

verified publishervyperium.com

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

Repository (GitHub)
View/report issues

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on mdi