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),
          ],
        ),
      ),
    );
  }
}
12
likes
150
pub points
88%
popularity

Publisher

unverified uploader

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