FLUTTER ECOSYSTEM

6thsolution/flutter_iconly

Iconly イコンセットの Flutter 実装。

flutter_iconly のプロジェクト画像
Stars
33
Forks
9
最終プッシュ(UTC)
2023/06/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.