mbi 0.0.9 copy "mbi: ^0.0.9" to clipboard
mbi: ^0.0.9 copied to clipboard

MBI (The MBI Icon pack created by MBCodes available as set of Flutter Icons.)

example/lib/main.dart

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

main() {
  runApp(MainApp());
}

class MainApp extends StatefulWidget {
  @override
  _MainAppState createState() => _MainAppState();
}

class _MainAppState extends State<MainApp> {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        body: IconButton(
            // Use the FeatherIcons class for the IconData
            icon: Icon(BrandsIcons.apache),
            onPressed: () {
              print("Pressed");
            }),
      ),
    );
  }
}
11
likes
30
pub points
58%
popularity

Publisher

verified publisherpacks.apexteam.net

MBI (The MBI Icon pack created by MBCodes available as set of Flutter Icons.)

Repository (GitLab)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on mbi