iconsax_plus 1.0.0 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
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),
],
),
),
);
}
}