supabase

  1. Alexander Stolte

    Android Example [B4X] Supabase - Storage Image Transformations

    https://www.b4x.com/android/forum/threads/b4x-supabase-the-open-source-firebase-alternative.149855/ Supabase Storage offers the functionality to transform and resize images dynamically. Any image stored in your buckets can be transformed and optimized for fast delivery...
  2. Alexander Stolte

    Android Example [B4X] Supabase Storage - Download file with Progress

    https://www.b4x.com/android/forum/threads/b4x-supabase-the-open-source-firebase-alternative.149855/ This is a very simple tutorial on how to download a file and show the progress in a progressbar. With my small image there is not much progress, it makes more sense to use this function with...
  3. Alexander Stolte

    Android Example [B4X] Supabase - Storage Files

    https://www.b4x.com/android/forum/threads/b4x-supabase-the-open-source-firebase-alternative.149855/ This is a very simple tutorial on how to use the storage file options. Upload File Uploads a file to an existing bucket. Dim UploadFile As Supabase_StorageFile =...
  4. Alexander Stolte

    Android Example [B4X] Supabase - Storage Bucket

    https://www.b4x.com/android/forum/threads/b4x-supabase-the-open-source-firebase-alternative.149855/ This is a very simple tutorial on how to use the storage bucket options. CREATE Creates a new Storage bucket Name - A unique identifier for the bucket you are creating Dim CreateBucket As...
  5. Alexander Stolte

    Android Example [B4X] Supabase - Authentification SignIn with Apple

    https://www.b4x.com/android/forum/threads/b4x-supabase-the-open-source-firebase-alternative.149855/ In this example, we will take a look at how we can implement authentication using Apple sign-in to secure our application using the Supabase SDK for B4X. SignIn with Apple is currently only...
  6. Alexander Stolte

    Android Example [B4X] Supabase - Authentification SignIn with Google

    https://www.b4x.com/android/forum/threads/b4x-supabase-the-open-source-firebase-alternative.149855/ In this example, we will take a look at how we can implement authentication using Google sign-in to secure our application using the Supabase SDK for B4X. Configure the Client IDs on the Google...
  7. Alexander Stolte

    Android Example [B4X] Supabase - Database CRUD

    https://www.b4x.com/android/forum/threads/b4x-supabase-firebase-alternative.149855/ This is a very simple tutorial on how to use the CRUD options. A more detailed tutorial is coming soon. CREATE Dim Insert As Supabase_DatabaseInsert = xSupabase.Database.InsertData Insert.From("dt_Tasks") Dim...
  8. Alexander Stolte

    Android Example [B4X] Supabase - Authentification

    https://www.b4x.com/android/forum/threads/b4x-supabase-firebase-alternative.149855/ The client library does the work for you, you don't have to worry about renewing the access token or using and saving it. This is a very simple tutorial on how to use the auth options. A more detailed tutorial...
  9. Alexander Stolte

    B4A Library [B4X] Supabase - The Open Source Firebase alternative

    Supabase is an open source Firebase alternative. It provides all the backend services you need to build a product. Supabase uses Postgres database with real-time capabilities. Basically, supabase provides an interface to manage postgres database that you can use to create table and insert, edit...
Top