-
Notifications
You must be signed in to change notification settings - Fork 0
local photos row
//tvlib/org.mjdev.tvlib.ui.components.tv/LocalPhotosRow
[androidJvm]\
fun LocalPhotosRow(title: Any? = R.string.title_photo_local, rowState: LazyListState = rememberLazyListState(), padding: Dp = 8.dp, backgroundColor: Color = Color.DarkGray.copy(alpha = 0.3f), roundCornerSize: Dp = 8.dp, backgroundShape: Shape = RoundedCornerShape(roundCornerSize), selection: String? = null, selectionArgs: Array<String>? = null, sortOrder: String? = PhotoItem.SORT_ORDER_DATE_DESC, cardWidth: Dp = computeCardWidth(), contentScale: ContentScale = ContentScale.Crop, transform: (Cursor) -> Any? = { c -> PhotoItem(c) }, cursor: Cursor? = rememberCursor( uri = PhotoItem.URI, projection = PhotoItem.MEDIA_PROJECTION, selection = selection, selectionArgs = selectionArgs, sortOrder = sortOrder, transform = transform ), onItemFocus: (item: Any?, fromUser: Boolean) -> Unit? = null, openItem: Context.(item: Any?) -> Unit? = null)