supa_manager 1.0.0-dev.2 copy "supa_manager: ^1.0.0-dev.2" to clipboard
supa_manager: ^1.0.0-dev.2 copied to clipboard

outdated

A Package for accessing a supabase database for Flutter

This package makes it easy to use the supabase database. It provides generic methods for performing CRUD operations (Create, Read, Update and Delete).

Features #

  • Provide authentication for loging in and creating a new user.
  • Provide generic methods to perform CRUD operations.

Getting started #

Add the package: flutter pub add supa_manager

Usage #

This package allows you to handle all the CRUD operations you need:

Creation #

databaseRepository.addEntry(tableData, TableEntry(item));

Reading #

databaseRepository.readEntries(tableData)

Updating #

databaseRepository.updateTableEntry(tableData, TableEntry(item));

Deletion #

databaseRepository.deleteTableEntry(tableData, TableEntry(item));

Additional information #

For more information on Supabase, go to https://supabase.com For a video tutorial, see https://www.raywenderlich.com/33619647-supabase-with-flutter