The ActivityIndicator represents a UI widget which displays a progress indicator hinting the user
for some background operation running like loading image, data, accepting a request, etc.
We can control its behavior by setting or binding to its boolean property busy.
Dynamic code-behind creation of ActivityIndicator and showing the indicator while image is loading.
JavaScript
TypeScript
const myloadingObject ={ isLoading:true};const indicator =newActivityIndicator();// Bind the busy property of the indicator to the isLoading property of the image
indicator.bind({
sourceProperty:"isLoading",
targetProperty:"busy"}, myloadingObject);console.log(indicator.busy);// busy is a writable property
myStack.addChild(indicator);
const myloadingObject ={ isLoading:true};const indicator =newActivityIndicator();// Bind the busy property of the indicator to the isLoading property of the imageindicator.bind({
sourceProperty:"isLoading",
targetProperty:"busy"}, myloadingObject);console.log(indicator.busy);// busy is a writable property
myStack.addChild(indicator);