v2.1.3
boxicons
1500개 이상의 아이콘을 포함한 가장 아름다운 고품질 아이콘 라이브러리이며, 이 플러그인은 Flutter에서 Boxicons 라이브러리를 사용하는 것을 용이하게 합니다.
24좋아요 33830일 다운로드140Pub 점수
AndroidiOSWebmacOSWindowsLinux
Flutter용 Boxicons 사용자 정의.
{"sdk":"flutter"}{"sdk":"flutter"}아래는 영문 원문 스냅샷입니다. 최신 내용은 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