iconly
Iconly 아이콘 사용을 위한 플러터 패키지입니다.
Iconly 아이콘 세트의 플러터 구현.
{"sdk":"flutter"}{"sdk":"flutter"}아래는 영문 원문 스냅샷입니다. 최신 내용은 GitHub에서 확인하세요.
Flutter package for using Iconly Icons. Iconly is totally free, and you can use this package to bring these awesome icons to your Flutter project.
This package has made from Iconly v2.3 version. following sets are currently available in this package:
note: since Flutter does not support multicolor Icons, we can not support Bulk Icon set. but we are going to implement that in the future.
Add the following line to your pubspec.yaml file, under the dependencies: section:
dependencies:
iconly: <latest_version>
import 'package:font_awesome_flutter/font_awesome_flutter.dart';
class IconlyWidget extends StatelessWidget {
Widget build(BuildContext context) {
return IconButton(
icon: Icon(IconlyLight.search),
onPressed: () { print("Pressed"); }
);
}
}
We have created a sample project where you can find the icon you want and add it to your project. you can also run the example folder on mobile platforms and web. Checkout This Link for more info.