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.
- Host: GitHub
- URL: https://github.com/afkcodes/flutter_phosphor_icons
- Owner: afkcodes
- License: mit
- Created: 2021-02-27T03:31:38.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2023-03-25T09:13:30.000Z (almost 3 years ago)
- Last Synced: 2025-10-23T07:29:54.424Z (4 months ago)
- Topics: flutter, fluttericon, flutterpackage, icon-font, icon-pack, phosphoricons
- Language: Dart
- Homepage: https://pub.dev/packages/flutter_phosphor_icons
- Size: 1.66 MB
- Stars: 15
- Watchers: 1
- Forks: 4
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
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).
[](https://github.com/afkcodes/flutter_phosphor_icons)
[](https://github.com/afkcodes/flutter_phosphor_icons/fork)
[](https://github.com/afkcodes/flutter_phosphor_icons)
[](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

## Support Me
## 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)