FLUTTER ECOSYSTEM

kozw/giphy_picker

Um seletor de giphy para o flutter

Capa do projeto giphy_picker
Stars
34
Forks
46
Último push (UTC)
20 de fev. de 2024
Status do projeto
Ativo
Koen Zwikstra GitHub avatar
GITHUB User

Koen Zwikstra ↗

The Netherlands
LinguagensDartC++CMakeHTMLCSwiftKotlinObjective-C

Tópicos técnicos

Dependências usadas

Lista de dependências 4 itens
  • flutter{"sdk":"flutter"}
  • http^1.2.1
  • flutter_testDesenvolvimento{"sdk":"flutter"}
  • flutter_lintsDesenvolvimento^2.0.0

README original

Texto original em inglês. Visite o GitHub para a versão atual.

Expandir / recolher README

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]');

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);
}

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/*'}))
}