rapidmvp
rapidmvp
  • 33
  • 33 566
How to use components in Flutterflow (Easy Version)
Knowing how to use components in Flutterflow can speed up your development time with reusable app elements.
In this video Flutterflow beginner level video, we look at a simple component, how we can use it and the Callback method we use to extract the information we need from component variables.
มุมมอง: 106

วีดีโอ

How to set up log in with Google with Flutterflow and Supabase
มุมมอง 101วันที่ผ่านมา
Adding the log in with Google option is proved to increase the sign up rate to your apps. Anecdotally developers report more user sign ups with Google compared to email and password. In this video we go step by step through the process of enabling log in with Google with Flutterflow and Supabase for web, Android and iOS. The process goes through adding the buttons, the actions you need and ever...
How to set up Supabase authentication (Free Flutterflow Course)
มุมมอง 24514 วันที่ผ่านมา
Work step by step through Supabase auth in this free beginner Flutterflow course style video. The video is split into 4 lesson sections: Module 1: Lesson 1 00:00 Module 1: Lesson 2 36:58 Module 2: Lesson 1 55:34 Module 2: Lesson 2 1:15:19 All of the code used in Module 2 can be copied from the Google Doc in this link: docs.google.com/document/d/1EmlYfhy9A6xHiSX_NdqjOw19EpdIHLJK/edit?usp=sharing...
Alternative to Stripe. (How to use Square payment links)
มุมมอง 20821 วันที่ผ่านมา
Sign up to square: squareup.com/i/RAPIDMVPCO Square is possibly an easier alternative to Stripe Payment Links, which allow more customisation through the API as opposed to the no code option of Stripe. In the video we look at an example of setting up a Square payment link through Flutterflow and sending the http request to the API via Supabase. The referral link above will get you £1000 of free...
How to sum the values of AppState and PageState variables in Flutterflow
มุมมอง 309หลายเดือนก่อน
In this beginners tutorial, we look at how to sum the values of local state variables in Flutterflow. Knowing the sum of values for a variable is a crucial piece of information for a whole host of different application types. This works for both AppState and PageState variables and is set up to sum the values of a list of objects. The code snippet used in the video can be downloaded from here: ...
Supabase Realtime (How to subscribe to real time changes in Flutterflow)
มุมมอง 636หลายเดือนก่อน
Supabase Realtime allows us to stream real time database changes to our Flutterflow applications. This functionality can be useful for a number of use cases such as chat apps, booking apps, live updates, sports scores etc. Any application you can think of that requires the data to be updated live from the database will benefit from Supabase Realtime. The example we are using in the video is sub...
How to create a custom action in Flutterflow
มุมมอง 428หลายเดือนก่อน
Working beyond the built in functions of Flutterflow is crucial for getting the most from the platform. Knowing hoe to create custom actions is a must have skill for all Flutterflow developers. In the video we look at the process of creating a custom action, inserting the code you need to make it work and returning a value to you app. This is a simple demo, but the process is very similar for m...
Keeping API keys secure with Supabase vault
มุมมอง 353หลายเดือนก่อน
Allowing your API keys to be intercepted, read by users or worse, malicious actors, can be catastrophic. Knowing how to keep API keys secure with Supabase Vault, behind an encrypted wall, can allow you to focus on app development and not worry about potentially harmful leaks. In this video we have two methods of using the Supabase vault to store and retrieve our API keys when we need them in ou...
Flutterflow Stripe Subscriptions (App subscriptions using Stripe payment links)
มุมมอง 1K2 หลายเดือนก่อน
Using Stripe payment links for subscriptions in your Flutterflow apps is a no code method of adding payment functionality without needing the Stripe API. In this video we look at how to add Stripe payment links to your Flutterflow app to receive subscription payments from your users. The code snippets used in the video can be copied from here: rapidmvp.co/how-to-use-stripe-payment-links-in-flut...
How to use wrappers in Supabase
มุมมอง 4072 หลายเดือนก่อน
Learning how to use wrappers in Supabase will allow you to import third party data into your Supabase tables from a number of different providers, including Stripe. In this video we will look at importing data into Supabase by using a wrapper. The examples used are Stripe and Airtable, but Supabase allows you to use other services too. Once we have access to the data in a Supabase wrapper, we c...
How to Make API Calls in Flutterflow
มุมมอง 9172 หลายเดือนก่อน
Knowing how to make API calls in your Flutterflow application allows you to make much more complex applications and user experiences. Connecting to an API from within Flutterflow is not too difficult. In this video we walk through the process using the OpenAi image generation API. We will create a simple user interface to send the prompt and display the resulting image and make the API call to ...
Step By Step Beginner Flutterflow Tutorial (Create a Simple Group Chat App)
มุมมอง 1K2 หลายเดือนก่อน
Building out your own apps is the best way to learn the functionality of Flutterflow. In this step by step beginner Flutterflow tutorial we create a simple group chat app. In the video we start with an templated app with authentication and build this out for a fully functional chat app. We look at how we create the user interface and chat bubbles, app navigation with choosing the chat group, ad...
How To Use Conditional Actions on Flutterflow Widgets (Colour, Visibility & Position)
มุมมอง 8593 หลายเดือนก่อน
Changing colour, position and visibility of Flutterflow widgets with conditional actions is a skill every Flutterflow beginner needs to learn. In this video we look at how we can use conditional logic to control the visibility, colour and location of the widgets on our page. We go through some simple examples step by step on how to do it and then look at how the exact same process gas been used...
How to use Flutterflow drag and drop with Supabase keyword search
มุมมอง 5043 หลายเดือนก่อน
Here we look at how to combine the Flutterflow drag and drop widgets with searching a Supabase table by keyword. This combination can give us a lot of flexibility in the type of UI options to provide app users. We start off by looking into how to search a Supabase table and map the returned results in our Flutterflow application to a custom data type. We then take this information and use the F...
How To Use Supabase Triggers
มุมมอง 6333 หลายเดือนก่อน
Knowing how to use triggers in Supabase can automate actions, speed up development and enhance your app’s functionality. In the video we run through two use cases for Supabase triggers before setting one up step by step to see how they work. The obvious use case for using Supabase triggers is to populate your public users table when a user registers for your app. We start off the video by expla...
How to add a background image in Flutterflow
มุมมอง 1.4K3 หลายเดือนก่อน
How to add a background image in Flutterflow
Beginner Flutterflow Tutorial - Build a Trivia App Step by Step (Part 2)
มุมมอง 1.1K4 หลายเดือนก่อน
Beginner Flutterflow Tutorial - Build a Trivia App Step by Step (Part 2)
Flutterflow tutorial - How to create custom log in actions
มุมมอง 6964 หลายเดือนก่อน
Flutterflow tutorial - How to create custom log in actions
Flutterflow Tutorial For Beginners (Building a simple trivia game app)
มุมมอง 4.3K4 หลายเดือนก่อน
Flutterflow Tutorial For Beginners (Building a simple trivia game app)
How to connect to the OpenAI API from Supabase
มุมมอง 3994 หลายเดือนก่อน
How to connect to the OpenAI API from Supabase
How to send SMS messages from Supabase
มุมมอง 5964 หลายเดือนก่อน
How to send SMS messages from Supabase
How to send emails from Supabase with the http extension
มุมมอง 9455 หลายเดือนก่อน
How to send emails from Supabase with the http extension
How to create responsive pages in Flutterflow
มุมมอง 7685 หลายเดือนก่อน
How to create responsive pages in Flutterflow
Supercharge your apps with rpc and Supabase
มุมมอง 6205 หลายเดือนก่อน
Supercharge your apps with rpc and Supabase
How to create user favourites in Flutterflow
มุมมอง 1.9K5 หลายเดือนก่อน
How to create user favourites in Flutterflow
How to update user email with Flutterflow and Supabase
มุมมอง 1.1K6 หลายเดือนก่อน
How to update user email with Flutterflow and Supabase
Two factor authentication security with Flutterflow and Supabase
มุมมอง 3936 หลายเดือนก่อน
Two factor authentication security with Flutterflow and Supabase
How to set up social authentication for a web app
มุมมอง 3756 หลายเดือนก่อน
How to set up social authentication for a web app
How to build two factor authentication with Flutterflow and Supabase
มุมมอง 8326 หลายเดือนก่อน
How to build two factor authentication with Flutterflow and Supabase
How to search a Supabase table in Flutterflow
มุมมอง 3.1K6 หลายเดือนก่อน
How to search a Supabase table in Flutterflow

ความคิดเห็น

  • @gifproductions2
    @gifproductions2 2 วันที่ผ่านมา

    Thank you! I was wondering about a little bit of extra security. Do you have idea how to implement 2 password boxes that check if they're the same before changing the password?

  • @delwarhussain8667
    @delwarhussain8667 4 วันที่ผ่านมา

    Hi. Really appreciate this nice tutorial. I have a question though. When users go to the chat page, the app reads from the database and displays the chat messages. Users are also getting the real-time messages while on the chat page. Is there a way you can cache the messages so that the chat page does not always have to keep fetching data from the database each time someone lands on the chat page, and only updates the chat page when: 1) on page load, there is a new message compared to cached data 2) while on chat page, there is an update to the chat messages. I believe you covered number 2 but it is possible to incorporate caching too? Thank you.

  • @LeviAttevelt
    @LeviAttevelt 7 วันที่ผ่านมา

    Thank you a lot on this tutorial! one question: i'm new in supabase and when importing tables from stripe i get the message "RLS not enforced on foreign tables. I see you don't have this problem and have no lock icon next to the imported tables. What have you done to change the authorization settings? is it a private table now? thanks in advance

  • @QqQq-me2jq
    @QqQq-me2jq 9 วันที่ผ่านมา

    Hello Professor.. Professor, can you teach me how to make the “Like Post” button and how to show the number of answers for each post using the Supabase databases?

  • @QqQq-me2jq
    @QqQq-me2jq 9 วันที่ผ่านมา

    Hello Professor.. Professor, can you teach me how to make the “Like Post” button and how to show the number of answers for each post using the Supabase databases?❤❤

  • @QqQq-me2jq
    @QqQq-me2jq 9 วันที่ผ่านมา

    Hello Professor.. Professor, can you teach me how to make the “Like Post” button and how to show the number of answers for each post using the Supabase databases?

  • @atheer3343
    @atheer3343 10 วันที่ผ่านมา

    Hello The way you extracted the SHA1 key is that for testing or production? is it supposed to be replaced with a production key?. Thank you for the video hope you can do one for Apple sign in.👍

    • @rapidmvp
      @rapidmvp 10 วันที่ผ่านมา

      @@atheer3343 yes it is

  • @16td
    @16td 11 วันที่ผ่านมา

    1:11:33 Can't we do this via flutterflow without using triggers like add new action under create account: insert row, matching row: auth id etc.?

  • @Pete_TheWiz_YT
    @Pete_TheWiz_YT 13 วันที่ผ่านมา

    Thanks for this tutorial!!! AT 10 min, can't we just make 1 correct and then cntr-d so you don’t have to re-do every setting again.

  • @vacationhomegroup
    @vacationhomegroup 14 วันที่ผ่านมา

    Love your work. TIA for all your help. From my Forgot Paasword page where I ask for the email address. I get an error code. AuthException(message: Not logged in, Status code: null). Any suggestions? This is me reset password email template : <a href="{{ .ConfirmationURL }}updatePassword">Reset Password</a> I want the user to be directed to updatePassword. My url redirect is the same as my site url so any sub page should redirect.

    • @rapidmvp
      @rapidmvp 14 วันที่ผ่านมา

      @@vacationhomegroup for the page where user enters email, you do not want the “user logged in box” ticked. (Top right of Flutterflow UI) That may be your issue

    • @vacationhomegroup
      @vacationhomegroup 14 วันที่ผ่านมา

      @@rapidmvp Thanks for the reply. Do you mean on the scaffold "requires auth", because I do not see anything about "user logged in". TIA

  • @Pete_TheWiz_YT
    @Pete_TheWiz_YT 15 วันที่ผ่านมา

    Thank you very much being struggling to make a quizz in my Neurodiverse app!!

  • @jalmood966
    @jalmood966 16 วันที่ผ่านมา

    Thank you for the amazing tutorial. 👍

  • @russkyboy1195
    @russkyboy1195 23 วันที่ผ่านมา

    but Square uses stripe engine🤒

  • @ShetMauli
    @ShetMauli 23 วันที่ผ่านมา

    The text not visible while adding actions.

  • @bartdereu9267
    @bartdereu9267 หลายเดือนก่อน

    11 minutes explanation could be done in 1 minute.

  • @andr101
    @andr101 หลายเดือนก่อน

    wth is this SupaFlow class? how do u know it? I can't find it in the docs

    • @rapidmvp
      @rapidmvp 28 วันที่ผ่านมา

      @@andr101 I don’t think it’s in the docs. I picked it up from the community forums

  • @ubcoder
    @ubcoder หลายเดือนก่อน

    good sir I have 3 rows and i want to show this rows with add more button one by one every rows in which remove button i click the remove button remove the specific row and i click add button show again please how i can do this

  • @user-nn1ki4cz3m
    @user-nn1ki4cz3m หลายเดือนก่อน

    is there a tutorial for payments other than subscriptions?

  • @MoonDesignDev
    @MoonDesignDev หลายเดือนก่อน

    Hey, would love to chat with you about something. Do you have a contact?

  • @phillippulido3899
    @phillippulido3899 หลายเดือนก่อน

    followed your tutorial step by step and this has been extremely helpful. i have a Video request where you create a list of different quizzes and when you select one it pulls that data from supabase onto the quiz page without needing to create 100 pages for each quiz. ive searched all over and havent been able to connect that data.

  • @buos5267
    @buos5267 หลายเดือนก่อน

    any url to copy this game? thank you

  • @atheer3343
    @atheer3343 หลายเดือนก่อน

    I know not related to this video but was hoping you can help. I have a function that calls a function that calls an api. I set an rpc in FF but it throws an error “ permission denied for schema vault”, function works in sql editor but not through rpc. I made a different function that performs something different to the same api using the same code and it works in sql and through rpc. I can’t figure out why? Thank you in advance.

    • @rapidmvp
      @rapidmvp หลายเดือนก่อน

      The function that calls the vault probably needs to be a security defined. Permission denied so I’d check that first

    • @atheer3343
      @atheer3343 หลายเดือนก่อน

      @@rapidmvp can you please make a video about this on how to operate Supabase with FF in a secure way. What type of security Definer and what search path is best to set up a function?. Thank you for the reply and the content.

  • @onedayapp3534
    @onedayapp3534 หลายเดือนก่อน

    I think its easier if you ddo it like this: Future<void> subscribe(String table, Future Function() callbackAction) async { $table'. SupaFlow.client .channel('public:$table') .on( RealtimeListenTypes.postgresChanges, ChannelFilter(event: "INSERT", schema: 'public', table: table), (payload, [ref]) => callbackAction(), ) .subscribe(); } Then on the callback action you just refresh the request. I tried and works perfectly inserting messages from both sender an recipient. On my own code I also added the filter for the chat_id

  • @onedayapp3534
    @onedayapp3534 หลายเดือนก่อน

    Great video as always! Do you know how to get push notification of the new message? (When you are outside the chat)

    • @rapidmvp
      @rapidmvp หลายเดือนก่อน

      Push notifications are on the list and will sort soon.

    • @onedayapp3534
      @onedayapp3534 หลายเดือนก่อน

      @@rapidmvp that is great!

  • @stivenramirez7597
    @stivenramirez7597 หลายเดือนก่อน

    I really like your videos thanks so much, is it possible to make a tutorial how to link supabase and stripe to manage subscriptions.

    • @rapidmvp
      @rapidmvp หลายเดือนก่อน

      There is a video on the channel they does this with stripe payment links and foreign data wrappers in supabase

  • @jaguarconsultoriadigital8147
    @jaguarconsultoriadigital8147 หลายเดือนก่อน

    This action only updates once. Then, if you create new records, it does not update.

    • @onedayapp3534
      @onedayapp3534 หลายเดือนก่อน

      What do you mean exactly?

    • @rapidmvp
      @rapidmvp หลายเดือนก่อน

      Apologies I missed explaining that one. I’ve put an update on the link that will listen continuously.

  • @JuanPerez-vv5lk
    @JuanPerez-vv5lk หลายเดือนก่อน

    I like your tutorials but please improve your audio quality.

    • @rapidmvp
      @rapidmvp หลายเดือนก่อน

      Thanks. I’m working on it. I think it’s improved a bit recently, but still trying to get the levels right.

  • @Karnadagan
    @Karnadagan หลายเดือนก่อน

    Thank You So Much RapidMVP, it works, thanks a lot lot lot!!

  • @elizabethpenn06
    @elizabethpenn06 หลายเดือนก่อน

    Is there a video of you building the job board from scratch?

    • @rapidmvp
      @rapidmvp หลายเดือนก่อน

      No. I have used it for a few examples but never recorded myself building it.

    • @elizabethpenn06
      @elizabethpenn06 หลายเดือนก่อน

      Thanks for the response!! I’m just having a lot of trouble building my Subcollection. I can’t figure out how to add content. I would have like 100 rows to add and would like to upload a file

  • @atheer3343
    @atheer3343 หลายเดือนก่อน

    Hello, I have tried to call stripe Connect API through the http function like you did with openAI and SMS. I followed what you did and I was able to call the API but I am unable to pass anything to the api like email etc.. can you please help ? Thank you in advance.

  • @BitesandGo
    @BitesandGo หลายเดือนก่อน

    Thanks for the video! Exactly what I was looking for. I put before my API KEY on an app variable and someone downloading the app from playstore "hacked it" and I had to pay for their Chatgpt4 usage :( - So using the Flutterflow API Call isnt safe as well?

  • @camilopenalver
    @camilopenalver หลายเดือนก่อน

    Hi, friend. Could you do a tutorial on how to verify email with FlutterFlow and Supabase? As you know, by default the option is disabled.

    • @rapidmvp
      @rapidmvp หลายเดือนก่อน

      I’ll add it to the list

  • @franjzamora6495
    @franjzamora6495 หลายเดือนก่อน

    with firebase its the same? thanks

    • @rapidmvp
      @rapidmvp หลายเดือนก่อน

      Foreign data wrappers are a Postgres feature. There is likely something similar on Firebase but I haven’t really used it.

  • @MikeMcClelland-121dsad
    @MikeMcClelland-121dsad หลายเดือนก่อน

    Great video. I wonder if you have managed to use Supabase for the Sign in with Apple on a phone (as opposed to web)? Would love to see a video on that as it is currently a feature that is not native to Flutterflow. Thanks!

  • @alberttjamag59
    @alberttjamag59 หลายเดือนก่อน

    Thanks a lot... 😀

  • @vacationhomegroup
    @vacationhomegroup หลายเดือนก่อน

    Didn't work for me. I get the alert, and the email in my public userprofile is updated. The auth does not change. Suggestions? OH, and all me supabase email confirmation & secure settings are turned off.

  • @toacreator
    @toacreator หลายเดือนก่อน

    Thank you for the tutorial. I'm relatively new to Flutterflow, and I appreciate your clear explanations. Also, this app has lots of good features that could apply to many other types of apps, which makes the tutorial very helpful. Thanks again!

  • @onedayapp3534
    @onedayapp3534 หลายเดือนก่อน

    Could you make a video on how to get push notifications when an user recieves a new message?

    • @rapidmvp
      @rapidmvp หลายเดือนก่อน

      It’s on the list👍

  • @almantas.gaizauskas
    @almantas.gaizauskas หลายเดือนก่อน

    Does apple app store let you upload your app with this approach? because it is not using apple pay.

    • @rapidmvp
      @rapidmvp หลายเดือนก่อน

      Payment links do support Apple Pay and Google Pay. AP needs setting up in your account docs.stripe.com/payments/payment-methods/integration-options#payment-method-product-support

  • @EmblazNOR
    @EmblazNOR หลายเดือนก่อน

    Brilliant! Thank you so much. Im wondering if the keys are safe when using firebase and toggling "make private" in the advanced api settings?

    • @rapidmvp
      @rapidmvp หลายเดือนก่อน

      When you use Firebase and toggle the make private it puts the whole api function at the back end in a cloud function. You may need to enable cloud functions in Firebase but I’m not a Firebase user so you would need to check that out.

  • @MyInspireSphere
    @MyInspireSphere หลายเดือนก่อน

    Brilliant video. Thank you. I am using firebase for my app. Have the API calls set to private (cloud functions).. I wanted to use the secrets manager to keep my keys but can’t figure how to do that unless I manually modify the cloud function auto generated by FlutterFlow. Any thoughts on that?

    • @rapidmvp
      @rapidmvp หลายเดือนก่อน

      I’m not a Firebase user so can’t help in that one I’m afraid

  • @markh-thai
    @markh-thai หลายเดือนก่อน

    I watched literally the first 5 mins of this and it answered my question with triggers and functions. Thank You Sir. 😊

  • @alberttjamag59
    @alberttjamag59 หลายเดือนก่อน

    Hi, thanks for this great video, I have no idea how to integrate the code you provided to make a custom action in FlutterFlow. Could you make a video to give us an explanation, please? Thank you.

    • @rapidmvp
      @rapidmvp หลายเดือนก่อน

      Will do. That’s a good idea 👍

    • @alberttjamag59
      @alberttjamag59 หลายเดือนก่อน

      @@rapidmvp Thank you so much... It's the only thing that's holding me back from this exceptional tutorial. I didn't know about custom actions and this is a crucial part. Thanks again. Do you have a mail to talk alittle bit further ? Maybe we can make some joint venture. Thanks

  • @EmblazNOR
    @EmblazNOR 2 หลายเดือนก่อน

    Please create a tutorial on how to safely store api keys in supabase and trigger it from flutterflow. For instance a call to openai

    • @rapidmvp
      @rapidmvp หลายเดือนก่อน

      API keys is this week’s video, should be tomorrow.

  • @chema_rodriguez.mp3
    @chema_rodriguez.mp3 2 หลายเดือนก่อน

    thank you so much! One question, does this method work with firebase? or only with supabase?

    • @rapidmvp
      @rapidmvp หลายเดือนก่อน

      Foreign data wrappers are a Postgres feature. I would assume Firebase has something similar.

    • @anas_riad
      @anas_riad 13 วันที่ผ่านมา

      Firebase has a native integration to FlutterFlow, assuming that's your low code front-end environment.

  • @kulumbapaul3065
    @kulumbapaul3065 2 หลายเดือนก่อน

    Awesome video! Thanks for sharing!!

  • @dakaradakaradakara699
    @dakaradakaradakara699 2 หลายเดือนก่อน

    Next on how to connect raspberry pi and supabase to run in flutterflow please.🙏🙏🙏

  • @stivenramirez7597
    @stivenramirez7597 2 หลายเดือนก่อน

    Amazing

  • @papeoumardiouf4506
    @papeoumardiouf4506 2 หลายเดือนก่อน

    Great video!! I had a question though Why did you use rpc for updating the members' column in the groups table instead of using the update row action in the action flow editor ? Isnt it the same ?

    • @rapidmvp
      @rapidmvp 2 หลายเดือนก่อน

      Yes. I do have a habit of defaulting to Postgres functions sometimes👍

    • @papeoumardiouf4506
      @papeoumardiouf4506 2 หลายเดือนก่อน

      i tried on my own app and it doesnt work... i gues if you want to append/remove an item from an array you have to go through a postgres function. Thanks!

  • @user-rp2qb3xq7v
    @user-rp2qb3xq7v 2 หลายเดือนก่อน

    Volume too low.... Can't hear you

    • @rapidmvp
      @rapidmvp 2 หลายเดือนก่อน

      Thanks, I’ll keep an eye on that👍