-
Notifications
You must be signed in to change notification settings - Fork 0
local video row
//tvlib/org.mjdev.tvlib.ui.components.tv/LocalVideoRow
[androidJvm]\
fun LocalVideoRow(title: Any? = R.string.title_video_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? = VideoItem.SORT_ORDER_DATE_DESC, cardWidth: Dp = computeCardWidth(), contentScale: ContentScale = ContentScale.Crop, transform: (Cursor) -> Any? = { c -> VideoItem(c) }, cursor: Cursor? = rememberCursor( uri = VideoItem.URI, projection = VideoItem.MEDIA_PROJECTION, selection = selection, selectionArgs = selectionArgs, sortOrder = sortOrder, transform = transform ), onItemFocus: (item: Any?, fromUser: Boolean) -> Unit? = null, openItem: Context.(item: Any?) -> Unit? = null)