v2.1.3
boxicons
One of the most beautiful high-quality icon libraries that contain 1500+ icons and this Plugin to facilitate the use of the Boxicons library in Flutter.
24Likes 33830-day downloads140Pub points
AndroidiOSWebmacOSWindowsLinux
Boxicons customization for Flutter.
{"sdk":"flutter"}{"sdk":"flutter"}English project snapshot. Visit GitHub for the latest content.
Easy to use 1500+ Icon from Boxicons.
In the dependencies: section of your pubspec.yaml, add the following line:
boxicons: <latest_version>
You can use it very easily. For example:
Icon(Boxicons.bx_home_smile)
import 'package:flutter/material.dart';
import 'package:boxicons/boxicons.dart';
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return IconButton(
// Use Boxicons
icon: Icon(Boxicons.bx_home_smile),
onPressed: () {
print('its done');
}
);
}
}
Announcing Boxicons v2.0.9!
MIT