arifai / flutter_boxicons

Boxicons for Flutter

Home Page:https://pub.dev/packages/flutter_boxicons

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Flutter Boxicons

build Pub Version

Boxicons customization for Flutter. You can use 2K+ more Boxicons.

Instalation

In the dependencies: section of your pubspec.yaml, add the following line:

flutter_boxicons: <latest_version>

Usage

You can use it very easily. For example:

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

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return IconButton(
        // Use Boxicons class
        icon: Icon(Boxicons.bx_message_rounded_dots),
        onPressed: () {
            print('Congratulations');
        }
    );
  }
}

Info

Boxicons version: 2.0.7

Thank you very much Boxicons

License

MIT

About

Boxicons for Flutter

https://pub.dev/packages/flutter_boxicons

License:MIT License


Languages

Language:Dart 99.5%Language:Kotlin 0.2%Language:Swift 0.2%Language:Objective-C 0.0%