mirror of
https://github.com/supabase/supabase.git
synced 2026-06-23 18:46:40 +08:00
32 lines
976 B
Plaintext
32 lines
976 B
Plaintext
---
|
|
id: installing
|
|
title: "Installing"
|
|
slug: installing
|
|
custom_edit_url: https://github.com/supabase/supabase/edit/master/web/spec/dart.yml
|
|
---
|
|
|
|
import Tabs from '@theme/Tabs';
|
|
import TabsPanel from '@theme/TabsPanel';
|
|
|
|
## Dart
|
|
|
|
Dart libraries are built and supported by the community.
|
|
|
|
```bash
|
|
dart pub add supabase
|
|
```
|
|
|
|
Find the source code on [GitHub](https://github.com/supabase/supabase-dart).
|
|
|
|
## Flutter
|
|
|
|
For Flutter project, you can use [supabase_flutter](https://github.com/supabase/supabase-flutter).
|
|
|
|
```bash
|
|
flutter pub add supabase_flutter
|
|
```
|
|
|
|
`supabase_flutter` plugin uses `supabase` plugin internally, and it adds some Flutter specific functionality such as handling deeplinks coming back from magic link verifications.
|
|
If you are creating a Flutter application, we recommend using `supabase_flutter` instead of `supabase`.
|
|
|
|
For the most part `supabase_flutter` shares the same API as `supabase` with few exceptions such as initialization or OAuth sign in. |