Category : Icons

coolicons This flutter package allows you to use the Coolicons icon pack. Made from Coolicons.  Installation In the dependencies: section of your pubspec.yaml, add the following line: coolicons: ^1.0.0  Usage import ‘package:coolicons/coolicons.dart’; class MyAwesomeWidget extends StatelessWidget { Widget build(BuildContext context) { return Card( child: Column( mainAxisAlignment: MainAxisAlignment.center, children: <Widget>[ Icon(Coolicons.Figma, size: 50.0), const SizedBox(height: 30.0), Text(‘Figma icon’, textAlign: TextAlign.center), ..

Read more

Custom Icon Generate & Add Your Custom Icons The custom icons will be converted into a ttf font file, which will be added into the project. An automatically generated Dart file will be added, allowing icons to be used like Icon(CustomIcons.email) Download source code on GitHub FlutterappworldProvides the list of the opensource Flutter apps collection ..

Read more

imaterial_pro_flutter This flutter package allows you to use the IMaterial Pro Icons.  Installation In the dependencies: section of your pubspec.yaml, add the following line: imaterial_pro_flutter: ^1.0.0  Usage import ‘package:imaterial_pro_flutter/imaterial_pro_flutter.dart’; class MyAwesomeWidget extends StatelessWidget { Widget build(BuildContext context) { return Card( child: Column( mainAxisAlignment: MainAxisAlignment.center, children: <Widget>[ Icon(IMaterialProRegular.Power, size: 50.0), const SizedBox(height: 30.0), Text(‘Location icon’, textAlign: TextAlign.center), ], ), ..

Read more

Advanced Icon A flutter package which contains collection of icon decoration tools such as gradient, opacity and icon transition feature with cool animation effects.  See live example. Installing With flutter run this command flutter pub add advanced_icon This will add a line like this to your package’s pubspec.yaml (and run an implicit flutter pub get): dependencies: advanced_icon: ..

Read more

dev_icons This flutter package allows you to use all the Dev Icons. You can view the icons catalog on devicon.dev Installation In the dependencies: section of your pubspec.yaml, add the following line: dev_icons: ^1.0.0 Usage import “package:dev_icons/dev_icons.dart”; class MyAwesomeWidget extends StatelessWidget { Widget build(BuildContext context) { return IconButton( icon: Icon(DevIcons.flutterPlain), onPressed: () { print(“Best cross platform framework”); } ); } ..

Read more

Fontify The Fontify package provides an easy way to convert SVG icons to OpenType font and generate Flutter-compatible class that contains identifiers for the icons (just like CupertinoIcons or Icons classes). The package is written fully in Dart and doesn’t require any external dependency. Compatible with dart2js and dart2native. Using CLI tool Globally activate the package: And it’s ready to ..

Read more

flutter_icons Customizable Icons for Flutter,Inspired by react-native-vector-icons Notice v1.0.0 has major Api changes, please be careful to upgrade icon names that begin with a number are preceded by a $prefix icon named with the dart keyword have the _ suffix added Bundled Icon Sets Browse all. AntDesign by AntFinance (297 icons) Entypo by Daniel Bruce (411 icons) EvilIcons by Alexander Madyankin & Roman Shamin (v1.10.1, 70 icons) ..

Read more

icon_picker A Flutter widget to show an icon collection to pick.This widget extend TextField and has a similar behavior as TextFormField Usage In the pubspec.yaml of your flutter project, add the following dependency: dependencies: … icon_picker: “^1.1.0” In your library add the following import: import ‘package:icon_picker/icon_picker.dart’; For help getting started with Flutter, view the online documentation. Example IconPicker ..

Read more

Package for Ant Icons An icon is a graphical representation of meaning. Icons can be used to express actions, state, and even to categorize data. Ant Design’s icons adhere to the following two principles and are designed for cross-platform consistency: Graphics that are clear, intuitive, and simple enjoy a higher degree of recognition and are more easily ..

Read more