> For the complete documentation index, see [llms.txt](https://developer.tryreferd.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developer.tryreferd.com/installing-referd/referd-for-flutter/getting-started.md).

# Getting Started

The Referd SDK for Flutter enables you to use the show Referd user profile in your app, track app user events, integrate referrals.

## Installation

Follow the below steps to start installing the Flutter SDK to your app

### Use this package as a library

#### Depend on it

Run this command:

With Flutter:

```shell
 $ flutter pub add gameball
```

This will add a line like this to your package's pubspec.yaml (and run an implicit `flutter pub get`):

```yaml
dependencies:
  gameball: ^0.0.3
```

Alternatively, your editor might support `flutter pub get`. Check the docs for your editor to learn more.

#### Import it

Now in your Dart code, you can use:

```dart
import 'package:gameball/gameball.dart';
```
