mirror of
https://github.com/flutter/holobooth.git
synced 2025-08-23 06:31:24 +08:00
fix: facebook share button (#427)
This commit is contained in:
@ -67,6 +67,7 @@ class ConvertBloc extends Bloc<ConvertEvent, ConvertState> {
|
||||
gifPath: result.gifUrl,
|
||||
status: ConvertStatus.videoCreated,
|
||||
twitterShareUrl: result.twitterShareUrl,
|
||||
facebookShareUrl: result.facebookShareUrl,
|
||||
triesCount: 0,
|
||||
shareStatus:
|
||||
isWaitingForVideo ? ShareStatus.ready : ShareStatus.initial,
|
||||
|
@ -113,6 +113,8 @@ void main() {
|
||||
videoUrl: videoUrl,
|
||||
gifUrl: gifUrl,
|
||||
firstFrame: firstFrame,
|
||||
twitterShareUrl: 'twitter',
|
||||
facebookShareUrl: 'facebook',
|
||||
),
|
||||
);
|
||||
},
|
||||
@ -127,6 +129,8 @@ void main() {
|
||||
status: ConvertStatus.videoCreated,
|
||||
gifPath: gifUrl,
|
||||
videoPath: videoUrl,
|
||||
twitterShareUrl: 'twitter',
|
||||
facebookShareUrl: 'facebook',
|
||||
),
|
||||
],
|
||||
);
|
||||
|
Reference in New Issue
Block a user