amicons 0.0.1 copy "amicons: ^0.0.1" to clipboard
amicons: ^0.0.1 copied to clipboard

Amicons is a Flutter icons hub that brings together popular icon sets in one place, including Iconly, Remix, Vuesax, Lucide, and Flaticon.With this package, there's no need to download multiple icon p [...]

example/lib/main.dart

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

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

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

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

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

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: const Text('Amicons Demo'),
      ),
      body: Center(
        child: Icon(
          Amicons.iconly_wallet,
          color: Colors.red,
          size: 90,
        ),
      ),
    );
  }
}
17
likes
0
points
105
downloads

Publisher

verified publisherayushmaji.com

Weekly Downloads

Amicons is a Flutter icons hub that brings together popular icon sets in one place, including Iconly, Remix, Vuesax, Lucide, and Flaticon.With this package, there's no need to download multiple icon packages for a single project—simply install Amicons and gain access to all these icon sets effortlessly.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on amicons