flutter_pas_tabler_icons 3.36.0
flutter_pas_tabler_icons: ^3.36.0 copied to clipboard
A Flutter package for Tabler Icons. Includes over 5000+ icons in both Outline and Filled variants, fully tree-shakeable.
flutter_pas_tabler_icons #
A Flutter package for Tabler Icons.
Tabler Icons is a set of over 5000+ free-to-use, open-source icons. This package provides icons from Tabler version 3.36.0 as IconData for Flutter, including both the Outline and Filled variants.
All icons are defined as static const, making them fully tree-shakeable so that only the icons you actually use are included in your application's build.
Getting started #
Add flutter_pas_tabler_icons to your pubspec.yaml dependencies:
dependencies:
flutter_pas_tabler_icons: ^3.36.0
Then run:
flutter pub get
Usage #
Import the package:
import 'package:flutter_pas_tabler_icons/flutter_pas_tabler_icons.dart';
Use the icons in your widgets:
// Outline icon
Icon(TablerIcons.heart)
// Filled icon
Icon(TablerIcons.heart_filled)
// Customizing
Icon(
TablerIcons.brand_github,
color: Colors.black,
size: 32.0,
)
Icon Naming #
Icon names are converted from Tabler's kebab-case to snake_case.
activity->TablerIcons.activitybrand-github->TablerIcons.brand_github123->TablerIcons.icon_123(Prefixed withicon_if it starts with a digit)filledvariant ->TablerIcons.heart_filled(Suffixed with_filled)
Additional information #
For a full list of icons, visit tabler-icons.io.