lucide_icons_flutter 3.1.8 copy "lucide_icons_flutter: ^3.1.8" to clipboard
lucide_icons_flutter: ^3.1.8 copied to clipboard

A Lucide icon library package for Flutter applications. Fork of Feather Icons, open for anyone to contribute icons.

lucide_icons #

Pub Version Pub Monthly Downloads Pub Likes Pub Points Pub Publisher

version: 0.556.0

Lucide Icons (lucide.dev) for Flutter. Visit the website for the full list of icons.

Example #

Use regular version

import  'package:lucide_icons_flutter/lucide_icons.dart';

Icon(LucideIcons.activity);

If you need to change the thickness of each icon stroke, use the way under the wire

import  'package:lucide_icons_flutter/lucide_icons.dart';
Icon(LucideIcons.activity100);
Icon(LucideIcons.activity200);
Icon(LucideIcons.activity300);
Icon(LucideIcons.activity400);
Icon(LucideIcons.activity500);
Icon(LucideIcons.activity600);

For RTL (right-to-left) support, use the dir() extension to make icons automatically flip in RTL layouts:

extension IconDataX on IconData {
  /// Tạo Icon có matchTextDirection = true (tự động flip khi RTL)
  IconData dir({
    bool matchTextDirection = true,
  }) {
    return IconData(
      codePoint,
      fontFamily: fontFamily,
      fontPackage: fontPackage,
      matchTextDirection: matchTextDirection,
    );
  }
}
import  'package:lucide_icons_flutter/lucide_icons.dart';

// Icon will automatically flip in RTL layouts
Icon(LucideIcons.arrowLeft.dir());

// You can also disable the RTL behavior if needed
Icon(LucideIcons.arrowLeft.dir(matchTextDirection: false));

enter image description here


remix_icons_flutter #

Pub Version Pub Monthly Downloads Pub Likes Pub Points

A Remix Icon library package for Flutter applications. Remix Icon (remixicon.com) is an open-source neutral style icon system with 2800+ icons.

📦 Package: remix_icons_flutter on pub.dev

import 'package:remix_icons_flutter/remix_icons.dart';

Icon(RemixIcons.home_line);
Icon(RemixIcons.home_fill);

Contributors #

vqh2602 github-actions[bot] alessandro-amos

134
likes
160
points
62.9k
downloads
screenshot

Publisher

verified publishervqhapp.name.vn

Weekly Downloads

A Lucide icon library package for Flutter applications. Fork of Feather Icons, open for anyone to contribute icons.

Homepage
Repository (GitHub)
View/report issues

Topics

#lucide #lucide-icons #feather #feather-icons #icons

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on lucide_icons_flutter