LoginSignup
5
3

More than 5 years have passed since last update.

FlutterでFontAwesomeを使う

Last updated at Posted at 2018-03-25

普段Web開発でFontAwesomeにお世話になっているのですが、Flutterによるアプリ開発でもお世話になれそうです。

FlutterでFontAwesomeを使うにはfont_awesome_flutterが使えます。

例えばgoogleのアイコンを出したいときは以下のように出せます。

pubspec.yml
dependencies:
  flutter:
    sdk: flutter
  font_awesome_flutter: ^6.0.0
new RaisedButton.icon(
  icon: new Icon(FontAwesomeIcons.google),
  label: new Text('Sigin In Google'),
)

flutter_button_icon.png

FontAwesomeのバージョンも5系なので最新です。実装を見てみるとかなり愚直なので使っていないものまで入ってしまいそうですが、とりあえずはこれでアイコンに困らなくなりました。

ちゃんとしたアプリを作るときはやはり使うものだけ利用する形にしたほうがいいと思いますが、まずはやってみるというときに使えそうなライブラリです。

5
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
3