Integrate getstream activity feed in flutter - flutter

So I am trying to integrate activity feed feature from get stream into flutter. But I am not able to get the docs for that. My question is, is it possible to integrate feed feature to flutter app ?
There are various tutorials for integrating chat feature but not the feed feature. Please help.
Note: I am not an experienced flutter developer...

Unfortunately, no Flutter SDK or customized docs for Flutter at the moment but we're considering to allocate some resources for it in Q3 this year.

I highly suggest you to use Flutter platform channels. I had to do that for a project I am working on currently. If you have any questions feel free to ask :)

There is a dedicated Dart package to interact with the API: https://pub.dev/packages/stream_feed
And a core package that simplifies the low-level client by managing state and providing builders: https://pub.dev/packages/stream_feed_flutter_core
Tutorial: https://getstream.io/activity-feeds/sdk/flutter/tutorial/

Related

How to build a Flutter voice call application without using a third-party SDK?

I want to build a voice call application using Flutter, I have searched for solutions but all of them use SDK and need to pay a fee, I want to create it myself but there is no any documentation I can find to guide me on this, if you have any way, please let me know, I appreciate your contribution.
Consider using these following :
Jitsi Meet
flutter-webrtc

How to integrate twilio voice call in flutter?

I want to implement twilio voice call in the flutter application. I tried a lot but can not get success on it.
I tried below packages for the integration twilio voice call.
firebase_core: ^1.18.0
firebase_messaging: ^11.4.2
cloud_functions: ^3.2.17
firebase_auth: ^3.3.20
Please help me to integrate this in flutter.
Thank you.
I create a package for this a long time ago, it's not production ready but maybe you can get some inspiration from it. The main thing is that there is no official twilio API for Flutter. So you can either try to find an out of the box package for it, or you can write the code yourself.
If you write the code yourself, you will have to write native code on the platform you are targeting in order to call the existing Twilio API for the platform. Basically you will write a bridge for each platform you want to target. You can do that with MethodChannel and other out of the box API provide by flutter. You can learn more about that by digging into the package
Twilio doesn't have an officially supported library for Flutter. As well as Pierre's suggestion, there is this unofficial Twilio Voice Flutter library which might help you out too.

Flutter Document Collaboraion

Is there any way to use the following link's structure to build app in flutter?
I want to make a document collaborated app.
https://www.pdftron.com/blog/android/build-real-time-collab-with-firebase-1/
Just scrubbing a bit through PDFtron docs and you will realize they offer pretty neat support for flutter.
As written in the docs you can access all native APIs, so you can achieve the same result from your link with the structure custom-tailored for your needs.
There is even a flutter repo with a wrapper that you can start at.
You can do the following:
Build the project in Flutter with Firebase support by reviewing the
official Flutter docs.
Build the User Interface using Flutter widgets (see sample below and customize for your usage)
Get the PDFTron/Flutter SDK
Build the document viewer in Flutter (this is a flutter code sample)
Read the other samples and cookbooks for more info at the same site
Additional setup for having the Firebase work on the iOS side
will be needed. See the Firebase docs noted earlier and this video for an overview

Is there any support for using Facebook SDK in Flutter?

I would like to add the Facebook app-events to my Flutter project :
https://developers.facebook.com/docs/app-events/android
https://developers.facebook.com/docs/app-events/ios
It relies on the Facebook SDK. However, it seems that there is no available plugin for the Facebook SDK integration in Flutter.
May I know should Flutter users implement their plugin to use the Facebook features?
Thanks!
At the time of answering this, there is currently no official plugin or package from the Facebook team.
But I had the same needs as you, so I wrote and published a plugin: facebook_app_events
It supports codeless app events as well as implements most of the App Events SDK.
Hope that answers your question and needs.

Difference between two similar Goodle Unity Ads plugins

Tere is a two plugins for Unity from Google for having Ads in your app.
First, based on firebase and provided via google play services:
https://github.com/googleads/googleads-mobile-unity
Second one, also well-updated, used by some people plugin for similar purposes as as well as first plugin.
https://github.com/unity-plugins/Unity-Admob
I am new in Ads in Unity3d, and I want to make it clear, what is the difference between them ?
I think someone can give a proper answer.
Maybe this can help.
Should we prefer AdMob in Google Play services compared to "old" AdMob SDK
But I think to read more their docs and choose, is best solution to choose.
I checked https://github.com/unity-plugins/Unity-Admob project and as you may check also in the doc there is no way for you to set the applicationID.
Google Ads cannot play without that ID. Also that plugin would try to take storage and WiFi access and as we know this is not needed for Admob.
I suggest you better use https://github.com/googleads/googleads-mobile-unity which is a official plugin at the moment.