supabase 0.0.1-dev.9 supabase: ^0.0.1-dev.9 copied to clipboard
A dart client for Supabase. This client makes it simple for developers to build secure and scalable products.
supabase-dart
#
A dart client for Supabase.
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.