mdi_plus 7.0.1 copy "mdi_plus: ^7.0.1" to clipboard
mdi_plus: ^7.0.1 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_plus/mdi_plus.dart';

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

/// Example app for the mdi_plus package.
class MyApp extends StatelessWidget {
  /// Creates the example application.
  const MyApp({super.key});

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'MyApp',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: const Scaffold(
        body: Center(
          child: Column(
            mainAxisAlignment: MainAxisAlignment.center,
            crossAxisAlignment: CrossAxisAlignment.center,
            children: <Widget>[
              Icon(Mdi.bell),
              Text('Ring'),
            ],
          ),
        ),
      ),
    );
  }
}
0
likes
160
points
74
downloads

Documentation

API reference

Publisher

unverified uploader

Weekly Downloads

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_plus