Skip to content

Latest commit

 

History

History
37 lines (26 loc) · 939 Bytes

README.md

File metadata and controls

37 lines (26 loc) · 939 Bytes

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