flutter_pas_tabler_icons 3.39.0
flutter_pas_tabler_icons: ^3.39.0 copied to clipboard
A Flutter package for Tabler Icons. Includes over 6000+ icons in both Outline and Filled variants, fully tree-shakeable.
flutter_pas_tabler_icons #
A Flutter package for Tabler Icons — always up to date, automatically.
Unlike other Tabler icon packages for Flutter, this library updates itself automatically via a CI pipeline that checks for new Tabler releases weekly. No waiting for a maintainer to manually publish — when Tabler ships new icons, this package follows within days.
Currently tracking Tabler Icons v3.39.0 with 6113 icons, including both Outline and Filled variants. All icons are static const, making them fully tree-shakeable.
Getting Started #
Add the package to your project:
flutter pub add flutter_pas_tabler_icons
Or manually in your pubspec.yaml:
dependencies:
flutter_pas_tabler_icons: ^3.39.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.