# Flutter UIKit Installation Guide

To clarify and streamline the instructions for integrating the social.plus UIKit into a Flutter project, I'll reorganize and correct your provided steps:

#### Step 1: Clone the social.plus UIKit Repository

First, clone the social.plus UIKit repository from GitHub:

```bash
git clone https://github.com/AmityCo/flutter_amity_uikit_beta_service
```

Navigate to the cloned directory:

```bash
cd flutter_amity_uikit_beta_service
```

#### Step 2: Add Local Package Dependency in pubspec.yaml

In your Flutter project (not the social.plus UIKit project), update the `pubspec.yaml` file to include the social.plus UIKit as a local package dependency:

```yaml
dependencies:
  flutter:
    sdk: flutter
  amity_uikit_beta_service:
    path: ../flutter_amity_uikit_beta_service
```

Replace `../flutter_amity_uikit_beta_service` with the actual relative or absolute path to your cloned `flutter_amity_uikit_beta_service` directory.

#### Step 3: Import Package in Your Dart Files

In your Flutter project, import the social.plus UIKit package in the Dart files where you want to use it:

```dart
import 'package:amity_uikit_beta_service/amity_sle_uikit.dart';
// Import other specific files from the package as needed
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.social.plus/social-plus-uikit/uikit-3/flutter/flutter-uikit-installation-guide.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
