gif_player 0.0.7 copy "gif_player: ^0.0.7" to clipboard
gif_player: ^0.0.7 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'),
    );
  }
}
5
likes
0
points
89
downloads

Publisher

verified publisherskyza.top

Weekly Downloads

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 #gitcontrols

License

unknown (license)

Dependencies

flutter, http

More

Packages that depend on gif_player