I want to have a ready chat for my flutter app, without coding anything so is there an sdk I can implement right away? I tried SendBird's ready sdk but it didn't work
You can checkout getstream flutter SDK - https://getstream.io/chat/sdk/flutter/.
Check out QuickBlox Flutter Chat SDK to implement chat functionality into your application.
Related
I am currently developing a flutter Chat application that I would like to add to an existing website developed in React. But I'm not sure how to do that or even if it's possible.
I found articles about adding flutter to android or iOS apps. But I found nothing that could help me with integrating a flutter package into a website.
Hi I am adding the firebase in my flutter app and create the app in the fire Base website for android and when adding it in the IOS he wants to do this and i do not know what he wants could anyone help me
I am developing a project with flutter for web, ios and android. How can I develop this app remotely? can i do this? I want to be able to make instant changes according to the user's request. How can I do that?
I am currently working on Flutter web and want to build Google meet like feature in the web app. I found some like Jitsi, 100ms and VideoSDK, but they don't support FLutter web.
I am not familiar with it. But i know Agora is supporting flutter. But i don't know if it will work with flutter web.
https://docs.agora.io/en/Video/landing-page?platform=Flutter
Edit:
The SDK package says it supports web
https://pub.dev/packages/agora_rtc_engine/versions/5.2.0
I want my app to take OTP automatically, In android, we have the SMS retrieval API for that, so how to implement the same thing for IOS and android using flutter
Currently, there is no official Flutter plugin developed by the Flutter team for this. You have two options for this:
Use plugins created by the developer community. Try sms_retriever.
Write your own platform-specific code (e.g. your Android code in Java), and invoke it from Flutter. Read more about this here.