https://github.com/miladimos/fabler_icons
tabler icons for flutter platforms (alpha) CONTRIBUTE TO COMPLETE IT :))
https://github.com/miladimos/fabler_icons
dart fabler fabler-icons flutter-apps flutter-web icons iconset tabler tabler-icons tabler-ui
Last synced: 1 day ago
JSON representation
tabler icons for flutter platforms (alpha) CONTRIBUTE TO COMPLETE IT :))
- Host: GitHub
- URL: https://github.com/miladimos/fabler_icons
- Owner: miladimos
- License: mit
- Created: 2022-02-04T23:23:01.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2022-12-30T18:06:33.000Z (over 2 years ago)
- Last Synced: 2025-04-07T01:13:27.877Z (27 days ago)
- Topics: dart, fabler, fabler-icons, flutter-apps, flutter-web, icons, iconset, tabler, tabler-icons, tabler-ui
- Language: Dart
- Homepage:
- Size: 2.04 MB
- Stars: 3
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# fabler_icons
### !!! this repository forked of https://github.com/bigbadbob2003/flutter_tabler_icons 😉The official [Tabler Icon Pack](https://github.com/tabler/tabler-icons).
official Tabler icons version: 1.119.0
## pubspec.yaml
```yml
dependencies:
flutter:
sdk: flutter
fabler_icons: ^1.2.34
```## Usage
```Dart
import 'package:fabler_icons/fabler_icons.dart';class MyWidget extends StatelessWidget {
Widget build(BuildContext context) {
return new IconButton(
icon: new Icon(FablerIcons.iconAddressBook),
onPressed: () { print('iconAddressBook pressed'); }
);
}
}
```