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

false

Yes

Controls whether to show the loading view on the page.

Valid values are:

  • true: Show the loading view.
  • false: Hide the loading view.

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

true

image.png

false

image.png