gif_player 0.0.1 copy "gif_player: ^0.0.1" to clipboard
gif_player: ^0.0.1 copied to clipboard

A Flutter package for playing GIFs with features like play, pause, and seek. Control your GIF playback easily in your app.

example/lib/main.dart

import 'package:flutter/material.dart';

import 'page/home_page.dart';

void main() {
  runApp(const MainApp());
}

class MainApp extends StatelessWidget {
  const MainApp({super.key});

  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'GifPlayer Demo',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      debugShowCheckedModeBanner: false,
      home: const MaterialHomePage(title: 'GifPlayer Demo'),
    );
  }
}
2
likes
0
pub points
67%
popularity

Publisher

unverified uploader

A Flutter package for playing GIFs with features like play, pause, and seek. Control your GIF playback easily in your app.

Homepage
Repository (GitHub)
View/report issues

Topics

#gif #gifplayer

License

unknown (license)

Dependencies

flutter, http

More

Packages that depend on gif_player