Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/alann-maulana/akar_icons_flutter
Perfectly rounded icon library made for designers and developers.
https://github.com/alann-maulana/akar_icons_flutter
Last synced: about 1 month ago
JSON representation
Perfectly rounded icon library made for designers and developers.
- Host: GitHub
- URL: https://github.com/alann-maulana/akar_icons_flutter
- Owner: alann-maulana
- License: mit
- Created: 2022-03-02T12:28:11.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-02-15T05:29:44.000Z (9 months ago)
- Last Synced: 2024-02-15T06:27:16.810Z (9 months ago)
- Language: Dart
- Size: 113 KB
- Stars: 5
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# akar_icons_flutter
The [Akar Icons](https://akaricons.com/) Icon pack available as set of Flutter Icons.Based on Akar Icons Fonts 1.1.21. See [fonts](https://github.com/artcoholic/akar-icons-fonts/tree/main/src/fonts/).
👍 Like us on [pub.dev](https://pub.dev/packages/akar_icons_flutter)!
## Installation
In the `dependencies:` section of your `pubspec.yaml`, add the following line:
```yaml
akar_icons_flutter: 1.1.21
```## Usage
```dart
import 'package:akar_icons_flutter/akar_icons_flutter.dart';class MyWidget extends StatelessWidget {
Widget build(BuildContext context) {
return new IconButton(
// Use the AkarIcons class for the IconData
icon: new Icon(AkarIcons.sword),
onPressed: () { print('Using the sword'); }
);
}
}
```## Author
Arturo Wibawa ([@agwibawa](https://twitter.com/agwibawa))## License
[MIT License](./LICENSE), Copyright © 2020-present Arturo Wibawa.## Credits
Flutter Support by [Alann Maulana](https://github.com/alann-maulana)