flutter_pas_tabler_icons 3.37.1 copy "flutter_pas_tabler_icons: ^3.37.1" to clipboard
flutter_pas_tabler_icons: ^3.37.1 copied to clipboard

retracted

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 Iconsalways up to date, automatically.

Tabler Icons pub package

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.37.1 with 6061 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.37.1

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.activity
  • brand-github -> TablerIcons.brand_github
  • 123 -> TablerIcons.icon_123 (Prefixed with icon_ if it starts with a digit)
  • filled variant -> TablerIcons.heart_filled (Suffixed with _filled)

Additional Information #

For a full list of icons, visit tabler-icons.io.

1
likes
0
points
267
downloads

Publisher

unverified uploader

Weekly Downloads

A Flutter package for Tabler Icons. Includes over 5000+ icons in both Outline and Filled variants, fully tree-shakeable.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on flutter_pas_tabler_icons