> ## Documentation Index
> Fetch the complete documentation index at: https://docs.rebellapp.com/llms.txt
> Use this file to discover all available pages before exploring further.

# my.hideLoading

> Hide the loading indicator.

Use this API to hide a loading indicator shown with `my.showLoading()`.

## Parameters

| Property | Type   | Required | Description                    |
| -------- | ------ | -------- | ------------------------------ |
| page     | Object | No       | Page object to hide loading on |

## Code Example

```javascript theme={null}
my.showLoading({ content: 'Saving...' });

saveData().then(() => {
  my.hideLoading();
  my.showToast({ content: 'Saved!', type: 'success' });
});
```

## Related APIs

<CardGroup cols={2}>
  <Card title="my.showLoading" icon="spinner" href="/jsapi/ui/feedback/my.showLoading">
    Show loading
  </Card>

  <Card title="my.hideToast" icon="xmark" href="/jsapi/ui/feedback/my.hideToast">
    Hide toast
  </Card>
</CardGroup>
