All Projects → git-touch → flutter-vector-icons

git-touch / flutter-vector-icons

Licence: MIT license
Customizable Icons for Flutter. Port of react-native-vector-icons

Programming Languages

dart
5743 projects
C++
36643 projects - #6 most used programming language
CMake
9771 projects
javascript
184084 projects - #8 most used programming language
ruby
36898 projects - #4 most used programming language
HTML
75241 projects

Projects that are alternatives of or similar to flutter-vector-icons

vue-icon-font
IconFont plugin for Vuejs
Stars: ✭ 25 (-66.67%)
Mutual labels:  icon
react-native-dynamic-vector-icons
Wrapper of react-native-vector-icons to use dynamic types
Stars: ✭ 84 (+12%)
Mutual labels:  icon
IconViewer
Icon Viewer Plugin for Intellij
Stars: ✭ 34 (-54.67%)
Mutual labels:  icon
leaflet-defaulticon-compatibility
Retrieve all Leaflet Default Icon options from CSS, in particular all icon images URL's, to improve compatibility with bundlers and frameworks that modify URL's in CSS.
Stars: ✭ 71 (-5.33%)
Mutual labels:  icon
react-native-ionicons
Ionic icons for React Native
Stars: ✭ 43 (-42.67%)
Mutual labels:  icon
fontagon
Fontagon is a great tool that easily converts svg into icon font. Fontagon-cli allows faster conversion to commands.
Stars: ✭ 18 (-76%)
Mutual labels:  icon
UltimateTabLayout
A library for tab layout use with viewpager. Very useful, small
Stars: ✭ 33 (-56%)
Mutual labels:  icon
netctl-tray
A lightweight netctl tray app with notifications
Stars: ✭ 30 (-60%)
Mutual labels:  icon
vuepress-plugin-svg-icons
🔥 SVG sprite plugin for VuePress
Stars: ✭ 17 (-77.33%)
Mutual labels:  icon
taro-icons
基于 Taro 的小程序图标库
Stars: ✭ 53 (-29.33%)
Mutual labels:  icon
peterthehan
My personal site and profile README.
Stars: ✭ 36 (-52%)
Mutual labels:  icon
bearded-icons
The VS Code icons with a long beard.
Stars: ✭ 62 (-17.33%)
Mutual labels:  icon
tray-item-rs
Multi-platform Tray Indicator
Stars: ✭ 145 (+93.33%)
Mutual labels:  icon
material-ui-toggle-icon
An animated toggle icon for Material-UI.
Stars: ✭ 32 (-57.33%)
Mutual labels:  icon
nativescript-app-icon-changer
Change the homescreen icon of your NativeScript iOS app at runtime!
Stars: ✭ 16 (-78.67%)
Mutual labels:  icon
ts3admin.class
The ts3admin.class is a powerful api for communication with Teamspeak 3 Servers from your website! Your creativity knows no bounds!
Stars: ✭ 107 (+42.67%)
Mutual labels:  icon
ICNS2ICO
ICNS2ICO lets you easily convert icons from the Apple's ICNS format to the Windows ICO format.
Stars: ✭ 17 (-77.33%)
Mutual labels:  icon
react-icofont
React Wrapper for the icofont project 🕶
Stars: ✭ 16 (-78.67%)
Mutual labels:  icon
react-iconfont-cli
转换iconfont图标为React标准组件,不依赖字体,支持多色彩
Stars: ✭ 58 (-22.67%)
Mutual labels:  icon
ImageActionSheet
iOS Native style action sheet like in Whatsapp with the option of showing icons. It is a complete implementation and does not use any private api of UIKit.
Stars: ✭ 20 (-73.33%)
Mutual labels:  icon

flutter_vector_icons

pub gallery

Customizable Icons for Flutter. Port of react-native-vector-icons.

Preview icons with the gallery: https://pd4d10.github.io/flutter-vector-icons/

Installation

Add flutter_vector_icons as a dependency in your pubspec.yaml file

Usage

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

class MyWidget extends StatelessWidget {
  Widget build(BuildContext context) {
    return IconButton(
      // Variable name is the same as font name:
      //
      // AntDesign
      // Entypo
      // EvilIcons
      // Feather
      // FontAwesome
      // Foundation
      // Ionicons
      // MaterialCommunityIcons
      // MaterialIcons
      // Octicons
      // SimpleLineIcons
      // Zocial
      // FontAwesome5Brands
      // FontAwesome5Regular
      // FontAwesome5Solid

      icon: Icon(MaterialCommunityIcons.star),
      onPressed: () {
        print('Star it');
      },
    );
  }
}

Version Correspondence

flutter-vector-icons react-native-vector-icons
2.x 9.x
1.x 8.x

8.x

Development

cd tool
npm install
node index.js

Credits

License

MIT

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].