flutter_pas_tabler_icons 3.36.0 copy "flutter_pas_tabler_icons: ^3.36.0" to clipboard
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.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
299
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