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
points
1.93k
downloads

Publisher

verified publishervyperium.com

Weekly Downloads

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

Repository (GitHub)

License

MIT (license)

Dependencies

flutter

More

Packages that depend on mdi