iconoir_flutter

Creator: coderz1093

Last updated:

Add to Cart

Description:

iconoir flutter

Iconoir - Flutter #



Iconoir is an open-source library with 1300+ unique SVG icons, designed on a 24x24 pixels grid. No premium icons, no email sign-up, no newsletters.
iconoir_flutter is an open source package that exports these icons as Flutter widgets (flutter_svg) that can be used in all of your Flutter projects.
Installation #
flutter pub add iconoir_flutter
copied to clipboard
Usage #
import 'package:flutter/material.dart';
import 'package:iconoir_flutter/iconoir_flutter.dart';

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

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

@override
Widget build(BuildContext context) {
return const MaterialApp(
home: DemoPage(),
);
}
}

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

@override
Widget build(BuildContext context) {
return Scaffold(
body: Container(
child: const Iconoir(),
),
);
}
}
copied to clipboard
Default values for the most common props are given below:



Prop name
Default value




color
"currentColor"


width
"1.5em"


height
"1.5em"



Icon names #
The Flutter widges are named as PascalCase variations of their reference names (i.e. airplane-helix-45deg becomes AirplaneHelix45deg).

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.