Skip to content

Mattertorian/supabase-dart

 
 

Repository files navigation

supabase-dart

A dart client for Supabase.

pub package pub test

Usage

import 'package:supabase/supabase.dart';

main() {
  final client = SupabaseClient('supabaseUrl', 'supabaseKey');
  final response = await client
      .from('countries')
      .select()
      .order('name', ascending: true)
      .execute();
}

Contributing

  • Fork the repo on GitHub
  • Clone the project to your own machine
  • Commit changes to your own branch
  • Push your work back up to your fork
  • Submit a Pull request so that we can review your changes and merge

License

This repo is licenced under MIT.

Credits

About

A Dart client for Supabase

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Dart 100.0%