v1.0.4+2
line_awesome_icons
作為 Flutter 圖示組件的 Line Awesome 圖標套件的 Flutter 插件。
48喜歡 9近 30 天下載20Pub 分數
平台暫無資料
作為 Flutter 圖標可用的 Line Awesome 圖標套件
{"sdk":"flutter"}以下為英文專案原文快照,最新內容請造訪 GitHub。
The Line Awesome Icon pack available as Flutter Icons
This plugin is based on Line Awesome Icons pack, which you can use it as an IconData in Flutter project https://icons8.com/line-awesome/
To use plugin, just import package import 'package:line_awesome_icons/line_awesome_icons.dart';
add use it as IconData in Icon widget:
Icon(LineAwesomeIcons.reddit, size: 60.0, color: Colors.redAccent))
import 'package:flutter/material.dart';
import 'package:line_awesome_icons/line_awesome_icons.dart';
void main() => runApp(MyApp());
class MyApp extends StatefulWidget {
@override
_MyAppState createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: const Text('Plugin example app'),
),
body: Center(
child: Icon(
LineAwesomeIcons.reddit,
size: 60.0,
color: Colors.redAccent,
),
),
),
);
}
}