FLUTTER ECOSYSTEM

kozw/giphy_picker

फ्लटर के लिए एक गिफ़ी पिकर

giphy_picker प्रोजेक्ट कवर
Stars
34
Forks
46
अंतिम पुश (UTC)
20 फ़र॰ 2024
प्रोजेक्ट स्थिति
सक्रिय
Koen Zwikstra GitHub avatar
GITHUB User

Koen Zwikstra ↗

The Netherlands
भाषाएँDartC++CMakeHTMLCSwiftKotlinObjective-C

तकनीकी विषय

उपयोग की गई निर्भरताएँ

निर्भरता सूची 4 आइटम
  • flutter{"sdk":"flutter"}
  • http^1.2.1
  • flutter_testडेवलपमेंट{"sdk":"flutter"}
  • flutter_lintsडेवलपमेंट^2.0.0

मूल README

यह अंग्रेज़ी मूल स्नैपशॉट है। नवीनतम सामग्री GitHub पर देखें।

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