Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ricardodalarme/bootstrap-icons-flutter
Bootstrap Icons library with over 2000 icons.
https://github.com/ricardodalarme/bootstrap-icons-flutter
android app-development bootstrap flutter icons ios
Last synced: 2 months ago
JSON representation
Bootstrap Icons library with over 2000 icons.
- Host: GitHub
- URL: https://github.com/ricardodalarme/bootstrap-icons-flutter
- Owner: ricardodalarme
- License: other
- Created: 2021-06-10T00:47:55.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-01-03T19:49:44.000Z (about 1 year ago)
- Last Synced: 2024-08-22T23:26:49.614Z (6 months ago)
- Topics: android, app-development, bootstrap, flutter, icons, ios
- Language: Dart
- Homepage: https://pub.dev/packages/bootstrap_icons
- Size: 697 KB
- Stars: 6
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
Bootstrap Icons for Flutter
Implementation of Bootstrap Icons in Flutter with over 1,600 icons.
Explore Bootstrap Icons »
[![Bootstrap Icons preview](https://github.com/twbs/icons/blob/main/.github/preview.png)](https://icons.getbootstrap.com)
### Installation
## Installation
Add this to your package's `pubspec.yaml` file:
```yaml
bootstrap_icons: ...
```**OR** run
```yaml
flutter pub add bootstrap_icons
```### Usage
```dart
import 'package:bootstrap_icons/bootstrap_icons.dart';class MyWidget extends StatelessWidget {
Widget build(BuildContext context) {
return IconButton(
icon: Icon(BootstrapIcons.alarm),
);
}
}
```### Contributing
If you want to contribute to this project, you may easily create issues and send PRs. Please take note that your code contributions will be applicable under MIT license unless specified otherwise.
### Credits
- Ricardo Dalarme (Package)
- [@twbs](https://github.com/twbs) (Icons)