remix_icons_flutter 4.7.0-beta.1 copy "remix_icons_flutter: ^4.7.0-beta.1" to clipboard
remix_icons_flutter: ^4.7.0-beta.1 copied to clipboard

A Remix Icon library package for Flutter applications.

Remix Icons Flutter #

Pub Version Pub Monthly Downloads Pub Likes Pub Points Pub Publisher

Remix Icon (remixicon.com) for Flutter. Map to Remix Icon v4.7.0.

Example #

import 'package:remixiconflutter/remixicon_ids.dart';

// Use underscore for hyphenated names (e.g. 24-hours-fill -> i24HoursFill)
// Hover over the icon name in IDE to see the preview
Icon(RemixIcon.heartFill);
Icon(RemixIcon.searchLine);

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

extension IconDataX on IconData {
  /// Create Icon with matchTextDirection = true (automatically flip in RTL)
  IconData dir({
    bool matchTextDirection = true,
  }) {
    return IconData(
      codePoint,
      fontFamily: fontFamily,
      fontPackage: fontPackage,
      matchTextDirection: matchTextDirection,
    );
  }
}
import 'package:remixiconflutter/remixicon_ids.dart';

// Icon will automatically flip in RTL layouts
Icon(RemixIcon.arrowLeftLine.dir());

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

Contributors #

vqh2602 github-actions[bot] alessandro-amos

3
likes
0
points
243
downloads

Publisher

verified publishervqhapp.name.vn

Weekly Downloads

A Remix Icon library package for Flutter applications.

Homepage
Repository (GitHub)
View/report issues

Topics

#remix-icon #remixicon #icons #flutter-icons

License

unknown (license)

Dependencies

flutter

More

Packages that depend on remix_icons_flutter