0 purchases
tabler icons
Tabler Icons #
Flutter Icon Base on tabler-icon.io
Usage #
add to pubspec.yaml
flutter pub add tabler_icons
copied to clipboard
Import in flutter source code:
import 'package:tabler_icons/tabler_icons.dart';
copied to clipboard
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')
],
),
],
),
)
copied to clipboard
https://tabler-icons.io/
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.