flutter_tabler_icons 1.42.0 flutter_tabler_icons: ^1.42.0 copied to clipboard
Tabler Icons for flutter using icons from https://github.com/tabler/tabler-icons by Paweł Kuna @codecalm
import 'package:flutter/material.dart';
import 'package:flutter_tabler_icons/flutter_tabler_icons.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return const MaterialApp(
title: 'Tabler Icons',
home: MyHomePage(),
);
}
}
class MyHomePage extends StatelessWidget {
const MyHomePage({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text("Tabler Icons"),
),
body: SingleChildScrollView(
child: Wrap(
children: [
for (final iconData in TablerIcons.all.values) Icon(iconData)
],
),
),
);
}
}