Yelo Icons
A Flutter package for easily integrating custom SVG icons into your Flutter applications.
Support
YELO ICONS is an package created for Flutter/dart. If you find it useful, please consider supporting it.
![]() |
Features
- Simple API for using custom SVG icons
- Customizable icon size and color
- Built on top of the
flutter_svg
package for efficient SVG rendering
Getting started
Add yelo_icons
to your pubspec.yaml
file:
dependencies:
yelo_icons: ^1.0.2
Run flutter pub get
to install the package.
Usage
Import the package in your Dart code:
import 'package:yelo_icons/yelo_icons.dart';
Use the Yelo.icon()
method to display an icon:
Yelo.icon("bold/user", size: 24, color: Colors.blue)
Example
import 'package:flutter/material.dart';
import 'package:yelo_icons/yelo_icons.dart';
class MyWidget extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Column(
children: [
Yelo.icon("bold/user", size: 48, color: Colors.red),
Yelo.icon("outline/settings", size: 24, color: Colors.green),
],
);
}
}
Additional information
For more information on using this package, please refer to the API documentation.
To report issues or contribute to the package, visit our GitHub repository.
Contributing
If you have suggestions or find issues with the extension, feel free to open an issue or a pull request on the GitHub repository.
Credits
- Kudos to all contributors that made this extension what it is.
License
This project is licensed under the MIT License - see the LICENSE file for details.
- Branded icons are licensed under their copyright license.