Skip to content

Latest commit

 

History

History
31 lines (26 loc) · 762 Bytes

README.md

File metadata and controls

31 lines (26 loc) · 762 Bytes

tabler_icons

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

pubspec.yaml

dependencies:
  flutter:
    sdk: flutter
  tabler_icons: 
    git:
      url: git://github.com/decafdevs/tabler-icons.git
      ref: master

Usage

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'); }
     );
  }
}