https://github.com/piyushmaurya23/eva_icons_flutter
Flutter package for Eva Icons. Eva Icons is a pack of more than 480 beautifully crafted Open Source icons for common actions and items. https://pub.dartlang.org/packages/eva_icons_flutter
https://github.com/piyushmaurya23/eva_icons_flutter
android dart eva eva-icon flutter flutter-icons flutter-package icons icons-pack ios
Last synced: 4 months ago
JSON representation
Flutter package for Eva Icons. Eva Icons is a pack of more than 480 beautifully crafted Open Source icons for common actions and items. https://pub.dartlang.org/packages/eva_icons_flutter
- Host: GitHub
- URL: https://github.com/piyushmaurya23/eva_icons_flutter
- Owner: piyushmaurya23
- License: mit
- Created: 2018-11-04T11:43:10.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2025-08-04T19:55:49.000Z (11 months ago)
- Last Synced: 2026-02-17T03:55:21.059Z (4 months ago)
- Topics: android, dart, eva, eva-icon, flutter, flutter-icons, flutter-package, icons, icons-pack, ios
- Language: Dart
- Homepage:
- Size: 476 KB
- Stars: 94
- Watchers: 3
- Forks: 6
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# eva_icons_flutter
Flutter package for [Eva Icons](https://akveo.github.io/eva-icons/). Eva Icons is a pack of more than 480 beautifully crafted Open Source icons for common actions and items.
This package brings [Eva Icons](https://akveo.github.io/eva-icons/) pack available as Flutter Icons. It has beautiful outlined and rounded Icons.
NOTE: AndroidX Compatible
Blog Post: [Beautiful Outlined and Rounded Icons in Flutter with Eva Icons](https://medium.com/@piyushmaurya23/beautiful-outlined-and-rounded-icons-in-flutter-with-eva-icons-e9bf86a7c4e9)
## Installation
In the dependencies: section of your `pubspec.yaml`, add the following line:
```yaml
eva_icons_flutter:
```
## Usage
```dart
import 'package:eva_icons_flutter/eva_icons_flutter.dart';
class MyWidget extends StatelessWidget {
Widget build(BuildContext context) {
return IconButton(
// Use the EvaIcons class for the IconData
icon: Icon(EvaIcons.heart),
onPressed: () { print("Eva Icon heart Pressed"); }
);
}
}
```
## Example
View the Flutter app in the `example` directory.
## Screenshot

## Contributors
- [Piyush Maurya](https://github.com/piyushmaurya23/)
- [Karan Shah](https://github.com/karan413255)