simplife_icons 0.1.0
simplife_icons: ^0.1.0 copied to clipboard
A Flutter icon package that provides custom IconData constants from a bundled TTF font.
Simplife Icons #
A Flutter package that provides a set of brand icons for use in Flutter applications.
Follow Simplife #
- Facebook: https://www.facebook.com/SimplifeEG
- LinkedIn (Company): https://www.linkedin.com/company/simplifeeg
- LinkedIn (Author): https://www.linkedin.com/in/minaromany
![]()
Overview #
The Simplife Icons package provides a comprehensive set of brand icons that can be easily integrated into your Flutter projects. The package is designed to be simple and easy to use, while also providing a wide variety of icons to choose from.
Features #
- A large collection of brand icons
- Easy to use and integrate
- Fully customizable
- Open source
Installation #
To use this package, add simplife_icons as a dependency in your pubspec.yaml file.
dependencies:
simplife_icons: ^1.0.0
Then, run flutter pub get to install the package.
Usage #
To use the icons, simply import the simplife_icons/simplife_icons.dart library and use the SimplifeIcons class to access the icons.
import 'package:flutter/material.dart';
import 'package:simplife_icons/simplife_icons.dart';
class MyAwesomeWidget extends StatelessWidget {
@override
Widget build(BuildContext context) {
return IconButton(
// Use the SimplifeIcons class to access the icons.
icon: const Icon(SimplifeIcons.google),
onPressed: () {
print('Simplife Icons are awesome!');
},
);
}
}
Additional information #
For more information, please visit the Simplife website.
If you have any questions or feedback, please feel free to open an issue on the GitHub repository.