---
name: "offCountrySelectResult"
mode: "kit"
versionRequirements:
  - { name: "BizKit", version: "3.0.0" }
platform:
  - "iOS"
  - "Android"
async: true
---

## offCountrySelectResult

> [VERSION] BizKit >= 3.0.0

> [PLATFORM] iOS, Android

> ⚡ **Supports Promise** — Returns a Promise when success / fail / complete callbacks are omitted.

### Description

Listen for the selection result on the country selection page

### Parameters

`(listener: Function)`

| Parameter | Type | Required | Default | Description |
| --- | --- | --- | --- | --- |
| `listener` | `(params: CountrySelectResultResponse) => void` | Yes | - | Event listener callback function |

### Referenced Types

##### `interface` CountrySelectResultResponse

| Property | Type | Since | Description |
| --- | --- | --- | --- |
| `countryCode` | `string` | `3.0.0` | Country calling code |
| `countryAbb` | `string` | `3.0.0` | Country code |
| `countryName` | `string` | `3.0.0` | Country name |


### Examples

```tsx
const listener = function (res) { console.log(res) }
ty.onCountrySelectResult(listener)
ty.offCountrySelectResult(listener)
```
