Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/geekswamp/flutter_boxicons
Boxicons customization for Flutter. You can use 2K+ more Boxicons.
https://github.com/geekswamp/flutter_boxicons
boxicons flutter icon
Last synced: about 21 hours ago
JSON representation
Boxicons customization for Flutter. You can use 2K+ more Boxicons.
- Host: GitHub
- URL: https://github.com/geekswamp/flutter_boxicons
- Owner: geekswamp
- License: mit
- Created: 2020-01-09T10:31:22.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2025-01-02T03:56:15.000Z (19 days ago)
- Last Synced: 2025-01-17T20:53:02.188Z (3 days ago)
- Topics: boxicons, flutter, icon
- Language: Dart
- Homepage: https://pub.dev/packages/flutter_boxicons
- Size: 668 KB
- Stars: 9
- Watchers: 2
- Forks: 9
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Funding: .github/FUNDING.yml
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# Flutter Boxicons
![Pub Version](https://img.shields.io/pub/v/flutter_boxicons)
[Boxicons](https://boxicons.com) customization for Flutter. You can use 2K+ more Boxicons.
## Installation
In the `dependencies:` section of your `pubspec.yaml`, add the following line:
```yaml
flutter_boxicons:
```## Usage
You can use it very easily. For example:
```dart
import 'package:flutter/material.dart';
import 'package:flutter_boxicons/flutter_boxicons.dart';class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return IconButton(
// Use Boxicons class
icon: Icon(Boxicons.bx_message_rounded_dots),
onPressed: () {
print('Congratulations');
}
);
}
}
```## Info
Boxicons version: 2.0.7
Thank you very much [Boxicons](https://boxicons.com)
## License
MIT