flutter_vector_icons 0.1.0 copy "flutter_vector_icons: ^0.1.0" to clipboard
flutter_vector_icons: ^0.1.0 copied to clipboard

outdated

Customizable icons for Flutter. Fonts are the same as react-native-vector-icons

example/flutter_vector_icons_example.dart

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
      // Octicons
      // SimpleLineIcons
      // Zocial

      icon: Icon(MaterialCommunityIcons.star),
      onPressed: () {
        print('Star it');
      },
    );
  }
}
239
likes
0
pub points
98%
popularity

Publisher

unverified uploader

Customizable icons for Flutter. Fonts are the same as react-native-vector-icons

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on flutter_vector_icons