This repository is an auto generated version of the official tabler icon pack. This repository takes care of generating all the icons in the font pack and then lists them down.
The official Tabler Icon Pack.
official Tabler icons version: 1.68
dependencies:
flutter:
sdk: flutter
tabler_icons:
git:
url: git://github.com/decafdevs/tabler-icons.git
ref: master
import 'package:tabler_icons/tabler_icons.dart';
class MyWidget extends StatelessWidget {
Widget build(BuildContext context) {
return new IconButton(
icon: new Icon(TablerIcons.ambulance),
onPressed: () { print('Ambulance pressed'); }
);
}
}