Great video thanks. Can you make a video on how to send push notifications between two or three applications that use 1 common Firebase? For example, eCommerce app, Admin app and Delivery Boy app.
@kubedigitalhub Жыл бұрын
Thank you for the great tutorial
@the_digitalpro Жыл бұрын
No problem at all
@pjc825 Жыл бұрын
Great practical information as always, thank you. What is the value of doing a custom function instead of a Custom widget in this example is there any specific advantage? 😃👍
@the_digitalpro Жыл бұрын
It depends on your use-case. So for example lets say you use a day view calendar library in your application which is embedded in the page then a Custom Widget is our best bet. If you are looking to overlay or show something off of a specific widget then a custom action can be used. They do not cancel each other out. The beauty of a custom action is that they can be invoked from within the regular action blocks.
@pjc825 Жыл бұрын
@@the_digitalpro Thank you so much for your reply, I really do think yours is the best FlutterFlow channel on KZbin. I would also love to see an example that uses the TTS (Text To Speech) library as well 😃💯👍
@StudyinGermanyofficial Жыл бұрын
As always great video. Would be nice to see a small video if you can show TTS. How we can use TTS for a text from the database?
@the_digitalpro Жыл бұрын
Just so I have my acronyms right and to help everyone else reading these comments you are referring to Text To Speech? I can take a look at this. Thank you also for the kind words on the video.
@JuanCarlos-ff2rh Жыл бұрын
Very interesting!!! If I could, next time I could make a video tutorial on how to insert a GDPR SDK into Flutterflow.
@the_digitalpro Жыл бұрын
Hi. Do you have a reference to the GDPR SDK you are referring to so I can take a look?
@R0cky08 ай бұрын
Thanks for this great walkthrough. I have a quick question, how do we trigger a navigation to the next page through a custom action? e.g., with a PinCode verified true. Do you happen to have a walkthrough for an email OTP verification using Supabase in FF? Much appreciated!
@AllmovieAll Жыл бұрын
Could you make a video on how to create a custom widget using Table_Calendar for product reservations? In other words, something like AirBnB, without going into too much detail. Display the product's available dates so that the user can choose them and save his choice. It could be several dates (so a list). Thanks for your videos!
@MyInspireSphere Жыл бұрын
Great Video. It seems that you are also having a problem with returning a value from a widget or call back action. Using the FF App state is a nice workaround but the page refresh will reset any other field on the page. Are you aware of a way to return a callback in flutterflow by having the widget state exposed to other widgets?
@the_digitalpro Жыл бұрын
Hi thank you for your comment. Unfortunately a parameter being passed back on a callback is not supported but agree this is the golden ticket. The FFAppState is the only viable option at this time. I really hope the FF team introduce a simple way to perform this. On your other point I'm not 100% if follow. Rebuilding the widget tree is a common scenario in Flutter.
@MyInspireSphere Жыл бұрын
@the_digitalpro thank you for your response. Indeed a big gap. I have no problem with any other gap as I can write my own code to add functionality. Except for callback and returning/exposing widget state. My bad on the last part, for some reason I thought you are performing 'Navigate To' as the last call.. Great video!
@the_digitalpro Жыл бұрын
@@MyInspireSphere Haha. You worried me for a moment as I thought I missed something important out of the video. Thank you for your kind words!
@alexisbrisenoserrano5132 Жыл бұрын
you able to show us how to block user/ hide posts/ reporting etc..?
@the_digitalpro Жыл бұрын
Hello. Can you provide a little more context? What kind of example are you looking for?
@alexisbrisenoserrano5132 Жыл бұрын
like almost a social marketplace where 'User A' can block 'User B' and all their listings, messages, etc @@the_digitalpro
@Rizwan-Ashraf Жыл бұрын
Sir please do walletconnect authentication
@kubedigitalhub Жыл бұрын
Please do you know how to get this Supabase Query to work inside Futterflow ###Deduct the amount from the sender UPDATE Users SET balance = balance - 50.00 WHERE user_id = sender_user_id; ###Add the amount to the receiver UPDATE Users SET balance = balance + 50.00 WHERE user_id = receiver_user_id; ###Record the transaction INSERT INTO Transactions (sender_user_id, receiver_user_id, amount, status) VALUES (sender_user_id, receiver_user_id, 50.00, 'completed'); It works perfectly in Supabase but i have no idea how to implement this inside of flutterflow.
@Lance_Dev11 ай бұрын
maybe too late on a response here but check out supabase functions. They auto-generate api endpoints that you can add as api calls to flutterflow including passing parameters to the function arguments.
@kubedigitalhub10 ай бұрын
@@Lance_Dev i was able to achieve it using Functions and triggers in Supabase. Thank you