Skip to content

pd4d10/flutter-vector-icons

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

97 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

flutter_vector_icons

pub

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

Preview icons with the gallery: https://flutter-vector-icons.vercel.app

Installation

flutter pub add flutter_vector_icons

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

Development

Fonts and code are auto generated by scripts:

deno run --allow-net=data.jsdelivr.com,cdn.jsdelivr.net --allow-read=. --allow-write=. --allow-run codegen.ts

Credits

License

MIT