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),
      ),
    );
  }
}
3
likes
160
points
43
downloads
screenshot

Publisher

verified publishereronsoft.com

Weekly Downloads

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)

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on remix_icon_icons