An open API service indexing awesome lists of open source software.

https://github.com/afkcodes/flutter_phosphor_icons

Phosphor Icons for Flutter.
https://github.com/afkcodes/flutter_phosphor_icons

flutter fluttericon flutterpackage icon-font icon-pack phosphoricons

Last synced: 6 days ago
JSON representation

Phosphor Icons for Flutter.

Awesome Lists containing this project

README

          

# Flutter Phosphor Icons

Phosphor is a flexible icon family for interfaces, diagrams, presentations — whatever, really. Explore all our icons at [phosphoricons.com](https://phosphoricons.com).
Now available for flutter(with null safety).

[![GitHub stars](https://img.shields.io/github/stars/afkcodes/flutter_phosphor_icons?style=flat-square&label=Star)](https://github.com/afkcodes/flutter_phosphor_icons)
[![GitHub forks](https://img.shields.io/github/forks/afkcodes/flutter_phosphor_icons?style=flat-square&label=Fork)](https://github.com/afkcodes/flutter_phosphor_icons/fork)
[![GitHub watchers](https://img.shields.io/github/watchers/afkcodes/flutter_phosphor_icons?style=flat-square&label=Watch)](https://github.com/afkcodes/flutter_phosphor_icons)
[![Follow on GitHub](https://img.shields.io/github/followers/afkcodes?style=flat-square&label=Follow)](https://github.com/afkcodes)

## Installation

`flutter_phosphor_icons: ^any`

## Usage

```dart
// Import the package
import 'package:flutter_phosphor_icons/flutter_phosphor_icons.dart';

// Use the icons from the package
Container(
child: Row(
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
children: [
Icon(
PhosphorIcons.heart,
size: 45,
),
Icon(
PhosphorIcons.heart_thin,
size: 45,
),
Icon(
PhosphorIcons.heart_light,
size: 45,
),
Icon(
PhosphorIcons.heart_bold,
size: 45,
),
Icon(
PhosphorIcons.heart_fill,
size: 45,
),
],
),
),
```

## Screenshot

![Screenshot](https://github.com/afkcodes/flutter_phosphor_icons/blob/master/meta/screen.png)

## Support Me


Buy Me A Coffee

## Related Projects

- [phosphor-react](https://github.com/phosphor-icons/phosphor-react) ▲ Phosphor icon component library for React
- [phosphor-vue](https://github.com/phosphor-icons/phosphor-vue) ▲ Phosphor icon component library for Vue
- [phosphor-icons](https://github.com/phosphor-icons/phosphor-icons) ▲ Phosphor icons for Vanilla JS
- [phosphor-figma](https://github.com/phosphor-icons/phosphor-figma) ▲ Phosphor icons Figma plugin

## License

MIT © [Phosphor Icons](https://github.com/phosphor-icons)