mirror of
https://github.com/supabase/supabase.git
synced 2026-07-02 00:54:25 +08:00
24 lines
502 B
Plaintext
24 lines
502 B
Plaintext
---
|
|
id: installing
|
|
title: 'Installing'
|
|
slug: installing
|
|
---
|
|
|
|
import Tabs from '@theme/Tabs'
|
|
import TabItem from '@theme/TabItem'
|
|
|
|
## Flutter
|
|
|
|
For Flutter project, you can use [supabase_flutter](https://pub.dev/packages/supabase_flutter) package.
|
|
|
|
```bash
|
|
flutter pub add supabase_flutter
|
|
```
|
|
|
|
## Other Dart projects
|
|
|
|
For non-Flutter projects using Dart, such as server-side Dart or Angular-Dart, you can use the [supabase](https://pub.dev/packages/supabase) package.
|
|
|
|
```bash
|
|
dart pub add supabase
|
|
``` |