giphy_picker 3.0.2 copy "giphy_picker: ^3.0.2" to clipboard
giphy_picker: ^3.0.2 copied to clipboard

A fast and customizable animated GIF picker for your flutter app.

giphy_picker #

A Flutter package that allows you to pick animated GIF images from Giphy.

Gif

Getting Started #

First, you need to register an app at the Giphy Developers Portal in order to retrieve an API key.

Pick a GIF:

import 'package:giphy_picker/giphy_picker.dart';

final gif = await GiphyPicker.pickGif(
                  context: context, 
                  apiKey: '[YOUR GIPHY APIKEY]');
copied to clipboard

Display a GIF using the GiphyImage widget. The following snippet demonstrates how to render a GIF in its original format:

Widget build(BuildContext context) {
  return GiphyImage.original(gif: gif);
}
copied to clipboard

Alternatively, load and display the GIF image using the Image widget:

Widget build(BuildContext context) {
  return Image.network(
      gif.images.original.url, 
      headers: {'accept': 'image/*'}))
}
copied to clipboard
81
likes
150
points
2.61k
downloads
screenshot

Publisher

verified publisherfirstfloorsoftware.com

Weekly Downloads

2024.09.19 - 2025.04.03

A fast and customizable animated GIF picker for your flutter app.

Repository (GitHub)

Documentation

API reference

License

BSD-3-Clause (license)

Dependencies

flutter, http

More

Packages that depend on giphy_picker