Results 17 comments of Griffins

update to the latest version f firebaseUI v 5.0.0 and use this ```startActivityForResult( AuthUI.getInstance() .createSignInIntentBuilder() .setAvailableProviders(Arrays.asList( new AuthUI.IdpConfig.GoogleBuilder().build(), new AuthUI.IdpConfig.FacebookBuilder().build(), new AuthUI.IdpConfig.TwitterBuilder().build(), new AuthUI.IdpConfig.EmailBuilder().build(), new AuthUI.IdpConfig.PhoneBuilder().build(), new AuthUI.IdpConfig.AnonymousBuilder().build())) .build(), RC_SIGN_IN);```...

> It seems like the preview of videos with no image from Lemmy are completely blank. I think we should at least have some icon to stand in, like the...

@hjiangsu ,Sure, do go ahead with the proposed changes.

@micahmo Leave the status. I'll have sometime coming week to complete it.

Thunder uses [youtube_player_flutter](https://pub.dev/packages/youtube_player_flutter) should be possible by seeking to position ```dart _ypfController.seekTo(Duration(seconds: 20)); ``` Edit: for devs `startAt` is used rather than `seekTo` ``` flags: ypf.YoutubePlayerFlags( controlsVisibleAtStart: true, autoPlay: autoPlayVideo(),...

@micahmo I'd love to mark the post as read `markPostsAsRead` , however I'm not sure on how to update the feed page.

```dart final params = ShareParams( text: 'Great picture', files: [XFile('${directory.path}/image.jpg')], ); final result = await SharePlus.instance.share(params); if (result.status == ShareResultStatus.success) { print('Thank you for sharing the picture!'); } ``` Should...