> For the complete documentation index, see [llms.txt](https://docs.hackle.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.hackle.io/development-guide/flutter/flutter-user-explorer.md).

# 사용자 탐색

{% hint style="info" %}
**Debug 빌드에서만 사용하는 것을 권장합니다.**
{% endhint %}

사용자 식별자를 확인하고 A/B 테스트, 기능플래그에 강제할당 하는 방법을 설명합니다.

아래 코드를 추가합니다.

```dart
import "package:hackle/hackle.dart";

await HackleApp.initialize(YOUT_APP_SDK_KEY);

// 사용자 탐색을 나타내고 싶은 시점에 Trigger 되도록 해주세요.
HackleApp.showUserExplorer();
```

화면 하단에 핵클 로고 버튼이 표시됩니다. 버튼 클릭시 설정 화면으로 진입 할 수 있습니다.

![](/files/BF5cOn5FuNPcVPAf5jsZ)

## 사용자 식별자 확인하기

화면 상단에서 사용자 식별자를 확인 및 복사 할 수 있습니다.

![](/files/EizyCQnAkb95XUlEVYyN)

## 사용자 강제할당

* 화면하단에서 A/B 테스트, 기능플래그의 분배 결과를 확인할 수 있습니다.
* SelectBox 클릭 시 특정 그룹으로 강제할당 할 수 있습니다.
* `Reset` 버튼 클릭 시 강제할당이 해제됩니다.
* `Reset all` 버튼 클릭시 모든 강제할당이 해제됩니다.
* 앱에서 강제할당한 경우 앱에서 분배하는 경우에만 적용됩니다. (대시보드 테스트기기에 등록되지 않습니다)
* 강제할당이 적용되지 않는경우 앱을 완전 종료 후 재실행 해주세요.

![](/files/g3J0SqjFO5f7xkB8hZ8T)

![](/files/UYMyCitcB09Hg8v65dZB)


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://docs.hackle.io/development-guide/flutter/flutter-user-explorer.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
