Discover the full spectrum of Remix Icons, now conveniently packaged as Flutter Icons, offering you unparalleled access to an extensive repertoire of captivating visuals.
Identifiers for the supported Remix Icon
Add remix_flutter
to your pubspec.yaml
dependencies.
import 'package:remix_flutter/remix_flutter.dart';
To retrieve icons, you can use the RemixIcon class with static properties:
Icon(
RemixIcon.flutter_line,
);
Alternatively, you can use the static method by specifying the icon name:
Icon(
RemixIcon.getIcon('flutter_fill'),
)
If the icon name starts with a number, you need to prefix it with i_
:
Icon(
RemixIcon.i_24_hours_line,
)