isShowLoading
The isShowLoading function is used to specify whether to show the loading view on the page.
Method signature
copy
isShowLoading(showLoading: Boolean):GRVStartupParams.Builder
Parameters
Parameter | Data Type | Default value | Required | Description |
showLoading | Boolean |
| Yes | Controls whether to show the loading view on the page. Valid values are:
If this parameter is not specified, the loading view is hidden by default. |
Sample
copy
val startupParams = GRVStartupParams.createBuilderForApp(context, appId)
.isShowLoading(true)
.build()
Griver.openApp(startupParams,null)
User experience
Value | Screenshot |
| |
|