flaticon_downloader

pub package Last Commits GitHub repo size License
Uploaded By

Dart package for download Flaticon Image & Photo.

Getting Started

In the pubspec.yaml of your flutter project, add the following dependency:

dependencies:
  ...
  flaticon_downloader: latest

Next we need to install this

# Dart
pub get

# Flutter
flutter packages get

In your library add the following import:

import 'package:flaticon_downloader/flaticon_downloader.dart';

Usage


// single quality
var result = await FlatIconDownloader.get('url'); // add your url

// for gif url
var result = await FlatIconDownloader.get('url', type: IconType.gif);

// multiple quality
var multiResult = await FlatIconDownloader.getMulti('url');

Contribution

Feel free to file an issue if you find a problem or make pull requests.

All contributions are welcome :)