v2.1.3
boxicons
Eine der schönsten hochwertigen Icon-Bibliotheken mit über 1500 Icons und dieses Plugin zur Vereinfachung der Verwendung der Boxicons-Bibliothek in Flutter.
24Likes 33830-Tage-Downloads140Pub-Punkte
AndroidiOSWebmacOSWindowsLinux
Anpassung von Boxicons für Flutter.
{"sdk":"flutter"}{"sdk":"flutter"}Englischer Projektschnappschuss. Aktuelle Inhalte auf GitHub.
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