Airtable 图标
Airtable UI Kit 图标的非官方 Flutter 包。Airtable UI Kit 由 Airtable 创建,并根据 CC BY 4.0 许可。
安装
将 airtable_icons 依赖项添加到您的 Flutter 项目中
dependencies:
airtable_icons: ^<latest-version>
用法
在您的 Flutter 文件中导入包,并使用以下两种替代方案之一来显示图标
import 'package:airtable_icons/airtable_icons.dart';
/// Alternative 1 - Using Icon widget:
Icon _icon = Icon(AirtableIcons.android, size: 16.0);
Icon _iconMicro = Icon(AirtableIcons.android, size: 12.0);
/// Alternative 2 - Using AirtableIcon widget:
Icon _icon = AirtableIcon(AirtableIcons.android);
Icon _iconMicro = AirtableIcon.micro(AirtableIcons.android);
问题
如有问题,请直接在 仓库 中提交。
图标
![]()
所有 Airtable 图标均可在其 Figma 文件 此处 查看。
觉得这个库有用吗?❤️
通过加入此仓库的Star 来支持它。⭐️ 此外,请在 GitHub 上关注我,获取我的下一个项目!?
许可证
Copyright 2023 hanmajid (Muhammad Farhan Majid)
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
https://apache.ac.cn/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.