You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have used this once in an earlier UI and it worked fine.
Now, I need to have it appear over a scroll view (or any component) and the z-order is not working. It appears behind the scrollview. Below is the code
Function called by rendered (to allow conditional rendering):
`
/*
get the activity indicator
*/
getActivityIndicator()
{
I have used this once in an earlier UI and it worked fine.
Now, I need to have it appear over a scroll view (or any component) and the z-order is not working. It appears behind the scrollview. Below is the code
Function called by rendered (to allow conditional rendering):
`
/*
*/
getActivityIndicator()
{
if(this.state.activityVisible)
{
else
{
return ""
}
}`
The render section which calls this function:
` render()
{
return (
Note, I originally had the styling inline, but now using externally:
overlayAnimation:
{
position : 'absolute',
backgroundColor: 'red',
top : 150,
bottom : 0,
left : 165,
right : 0,
zIndex : 1,
},
The text was updated successfully, but these errors were encountered: