TrustEntryList

fun TrustEntryList(trustManagerModel: TrustManagerModel, title: String, imageLoader: ImageLoader, noItems: @Composable () -> Unit = {}, onTrustEntryClicked: (trustEntryInfo: TrustEntryInfo) -> Unit, modifier: Modifier = Modifier)

A Composable that displays a scrollable list of trust entries managed by a TrustManagerModel.

It observes the TrustManagerModel.trustManagerInfos state and automatically updates when trust entries are added, removed, or modified. It's using FloatingItemList to display items

Parameters

trustManagerModel

The presentation model observing the underlying TrustManager.

title

The title to display at the top of the list.

imageLoader

a ImageLoader.

noItems

A Composable to render when the trust manager is empty, normally a FloatingItemCenteredText.

onTrustEntryClicked

Callback invoked when a specific trust entry in the list is clicked.

modifier

The modifier to apply to the list.