LoadingItemUIContent

private fun LoadingItemUIContent(    loadingRoutine: suspend () -> Boolean,     initialDelay: Long?,     loadingIndicator: @Composable () -> Unit,     contentLoaded: @Composable () -> Unit)

Method used to display the content of the EmptyListUI

Parameters

loadingRoutine

The routine used to load the data

loadingIndicator

The loading indicator to display

initialDelay

An initial delay to apply to the loadingRoutine before to start

contentLoaded

The content to display when the data have been loaded