• Build a simple group chat app (Beginner Flutterflow tutorial)
    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…
  • How to use Supabase Triggers
    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…
  • How to create custom log in actions in Flutterflow
    In this video we will look at how we direct users to different areas within our Flutterflow apps on login depending on what type of user they are. We do this by creating custom log in actions. There are many use cases for directing users to different parts of a an app when they log…
  • Connect to the OpenAI API from Supabase
    Harness the power of AI in your apps from within your Supabase project, by creating a connection to the OpenAI API. With another look at the Supabase http extension, we connect to the OpenAI API to use the Dall-e-3 image generation model. We will be making the API request via http, sending a prompt to…
  • How to send SMS messages from Supabase
    Sending SMS messages to your users can be a key communication feature in your applications. In this video we will show you how to send an SMS message from Supabase. In the video we take a look at connecting to the Sinch API for sending sms messages to our users from Supabase. Using the http…
  • How to send emails from Supabase
    The ability to send our users emails is a crucial part of any app development. We may want to do this in app for a number of reasons, so knowing how to send emails from Supabase will provide us the freedom of doing this without additional third party tools and ensuring our data is all…
  • Simple hack to refresh a page view in Flutterflow
    So this is less of a hack and more of a method for refreshing your Flutterflow page views. The good thing is, it needs no custom actions or custom code, we are just using what is already built into Flutterflow. The issue is that sometimes when you are changing values or information on a page,…
  • How to set up social authentication with Flutterflow and Supabase
    Knowing how to set up social authentication with your Flutterflow and Supabase apps, can give your creations a sense of trust that email authentication alone cannot. This is especially true of niche apps where we need to build user trust. Most app builders seem to find that Google Auth is the most used method, particularly…
  • How to update user email with Flutterflow and Suapabase
    Knowing how to update your users email in our Flutterflow and Supabase apps is critical to a good user experience. Fortunately for us, this is built natively into Flutterflow and can be achieved without any custom actions. There is an action built into Flutterflow in the Supabase authentication options that is called update email. Unlike…
  • How to sum the values of a Supabase column in Flutterflow
    If you are working with data within your Flutterflow apps, at some point you are going to need to provide the user with the sum of values with a column of your Supabase tables. Although there is easy way of doing this built into Flutterflow, in this video, we can see how to achieve the…