Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions lib/flutter_gifimage.dart
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,8 @@ class GifController extends AnimationController{


class GifImage extends StatefulWidget{
GifImage({
const GifImage({
Key key,
@required this.image,
@required this.controller,
this.semanticLabel,
Expand All @@ -72,7 +73,7 @@ class GifImage extends StatefulWidget{
this.centerSlice,
this.matchTextDirection = false,
this.gaplessPlayback = false,
});
}) : super(key: key);
final VoidCallback onFetchCompleted;
final GifController controller;
final ImageProvider image;
Expand Down