iconsax_plus 1.0.0 copy "iconsax_plus: ^1.0.0" to clipboard
iconsax_plus: ^1.0.0 copied to clipboard

Iconsax are the official icons of the Vuesax framework, these icons can be used for personal and commercial use for free

example/lib/main.dart

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

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

class MyApp extends StatelessWidget {
  const MyApp({super.key});
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: const MyHomePage(title: 'Iconsax Demo'),
    );
  }
}

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,
        title: Text(title),
      ),
      body: Center(
        child: Column(
          mainAxisAlignment: MainAxisAlignment.center,
          children: [
            Icon(IconsaxPlusBold.home),
            Icon(IconsaxPlusLinear.home_1),
            Icon(IconsaxPlusBroken.home_1),
          ],
        ),
      ),
    );
  }
}
26
likes
150
points
2.16k
downloads

Publisher

unverified uploader

Weekly Downloads

Iconsax are the official icons of the Vuesax framework, these icons can be used for personal and commercial use for free

Homepage
Repository (GitHub)
View/report issues

Topics

#icons #iconsax #flutter #dart

Documentation

Documentation
API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on iconsax_plus