remix_icon_icons 1.0.1 copy "remix_icon_icons: ^1.0.1" to clipboard
remix_icon_icons: ^1.0.1 copied to clipboard

Open-source neutral-style system symbols elaborately crafted for designers and developers. All of the icons are free for both personal and commercial use.

example/remix_icon_icons_example.dart

import 'package:flutter/material.dart';
import 'package:remix_icon_icons/remix_icon_icons.dart';

void main() {
  runApp(const MyApp());
}

class MyApp extends StatelessWidget {
  const MyApp({super.key});

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'RemixIcon',
      theme: ThemeData(
        colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
        useMaterial3: true,
      ),
      home: const MyHomePage(title: 'RemixIcon'),
    );
  }
}

class MyHomePage extends StatelessWidget {
  const MyHomePage({super.key, required this.title});

  final String title;

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        backgroundColor: Theme.of(context).colorScheme.inversePrimary,
        leading: const Icon(RemixIcon.flutter),
        title: Text(title),
        centerTitle: true,
        actions: const [
          Icon(RemixIcon.remixicon),
        ],
      ),
      body: Center(
        child: Text(
          'RemixIcon',
          style: Theme.of(context).textTheme.headlineMedium,
        ),
      ),
      floatingActionButton: FloatingActionButton(
        onPressed: () {
          ScaffoldMessenger.of(context)
              .showSnackBar(const SnackBar(content: Text('Favorite Added')));
        },
        tooltip: 'add_favorite',
        child: const Icon(RemixIcon.heart_add),
      ),
    );
  }
}
2
likes
160
pub points
74%
popularity
screenshot

Publisher

verified publishereronsoft.com

Open-source neutral-style system symbols elaborately crafted for designers and developers. All of the icons are free for both personal and commercial use.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on remix_icon_icons