FLUTTER ECOSYSTEM

kozw/giphy_picker

Flutter用のGiphyピッカー

giphy_picker のプロジェクト画像
Stars
34
Forks
46
最終プッシュ(UTC)
2024/02/20
プロジェクト状態
公開中
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/*'}))
}