> For the complete documentation index, see [llms.txt](https://docs.mapbox.com/android/navigation/ux/llms.txt)

# Search panel configuration

Search panel is the horizontal button container in the content part of the app in free drive state. The UX Framework exposes an option to let developers change its position.

![UX Framework screenshot showing default search panel.](https://docs.mapbox.com/android/assets/ideal-img/dash-sdk-search-panel-default.c60b17f.480.png)

Let's say your UX team realized that the search panel should be displayed on top of the screen:

```kotlin
Dash.init(
    context = this,
    accessToken = getString(R.string.mapbox_access_token),
) {
    ui {
        searchPanel {
            position = SearchPanelPosition.TOP_LEFT
        }
    }
}
```

![UX Framework screenshot showing custom search panel.](https://docs.mapbox.com/android/assets/ideal-img/dash-sdk-search-panel-custom.3377da2.480.png)

### See Also

> **Related content (guide): [Search panel customization](https://docs.mapbox.com/android/navigation/ux/guides/customization/search-panel/)**
> 
> Learn how to customize the search panel.