tabler_icons_plus 3.40.0+2
tabler_icons_plus: ^3.40.0+2 copied to clipboard
Tabler Icons as a Flutter icon font — 6,074 open-source icons available as typed IconData constants. Fully compatible with the Icon widget and themes.
example/example.md
Basic Usage #
import 'package:flutter/material.dart';
import 'package:tabler_icons_plus/tabler_icons_plus.dart';
void main() => runApp(const MyApp());
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(title: const Text('Tabler Icons Demo')),
body: const Center(
child: Wrap(
spacing: 16,
runSpacing: 16,
children: [
Icon(TablerIcons.home, size: 32),
Icon(TablerIcons.user, size: 32),
Icon(TablerIcons.settings, size: 32),
Icon(TablerIcons.bell, size: 32),
Icon(TablerIcons.heart, size: 32, color: Colors.red),
Icon(TablerIcons.star, size: 32, color: Colors.amber),
],
),
),
),
);
}
}
Icon Naming #
Tabler's kebab-case names are converted to camelCase:
| Tabler Name | Dart Constant |
|---|---|
arrow-left |
TablerIcons.arrowLeft |
chevron-down |
TablerIcons.chevronDown |
brand-github |
TablerIcons.brandGithub |
circle-check |
TablerIcons.circleCheck |
Browse all icons at tabler.io/icons.