FLUTTER ECOSYSTEM

6thsolution/flutter_iconly

Iconly 圖標集的 Flutter 實作。

flutter_iconly 專案封面
Stars
33
Forks
9
最近推送(UTC)
2023年6月24日
專案狀態
未封存
6thSolution GitHub avatar
GITHUB Organization

6thSolution ↗

語言DartHTMLSwiftKotlinObjective-C

技術主題

此儲存庫發佈的套件

使用的依賴

依賴清單 2 項
  • flutter{"sdk":"flutter"}
  • flutter_test開發依賴{"sdk":"flutter"}

原始 README

以下為英文專案原文快照,最新內容請造訪 GitHub。

展開 / 收合專案 README

Iconly

pub

https://raw.githubusercontent.com/6thsolution/flutter_iconly/main/assets/image/transparent_banner.png

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:

  • Light
  • Bold
  • Broken

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.

installation:

Add the following line to your pubspec.yaml file, under the dependencies: section:

dependencies:
  iconly: <latest_version>

Usage

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"); }
     );
  }
  
}

Check the Example and find your Icon

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.