tabler_icons 2.5.0+1 tabler_icons: ^2.5.0+1 copied to clipboard
A tabler icon flutter packages based on https://tabler-icons.io/
Tabler Icons #
Flutter Icon Base on tabler-icon.io
Usage #
- add to pubspec.yaml
flutter pub add tabler_icons
- Import in flutter source code:
import 'package:tabler_icons/tabler_icons.dart';
- Example:
Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
Row(
children: <Widget>[
Icon(TablerIcons.arrow_back),
SizedBox(width: 10.0),
Text('Arrow Back Icon')
],
),
Row(
children: <Widget>[
Icon(TablerIcons.heart),
SizedBox(width: 10.0),
Text('Heart Icon')
],
),
],
),
)