Reference
Icons
High-quality Lucide and Phosphor icons maintained by the Forui team.
To swap the bundled Lucide icons for a different icon set, see the customizing icons guide.
Forui Lucide and Phosphor are Flutter libraries that provide high-quality icons from Lucide and Phosphor Icons.
Installation
Forui Lucide is bundled with the forui package. You don't need to install it separately if you installed forui.
From your Flutter project directory, run the following command to install Forui Lucide/Phosphor.
flutter pub add forui_lucideUsage
The best way to find a list of icons is to visit the Lucide/ Phosphor Icons. website. We update the icons in the Forui Lucide package with each Forui release. If you notice a missing icon, please open an issue.
1import 'package:flutter/widgets.dart';23import 'package:forui/forui.dart';4import 'package:forui_lucide/forui_lucide.dart';56// alternatively; if you've only installed forui_lucide.78const dogIconWidget = Icon(FLucideIcons.dog);910// White cat icon with a size of 24x24.11const catIconWidget = Icon(12 FLucideIcons.cat,13 size: 24,14 color: Color(0xFFFFFFFF),15);16