DisplaySearchResults

fun DisplaySearchResults(bookList: List<MBook>, text: String, filter: SearchType, navController: NavHostController, viewModel: BookInfoScreenViewModel = viewModel())

This composable is the Display Search Results. It displays all of the results in thumbnail view derived from a book search

Parameters

bookList

List the list of books

text

String the text to search for

filter

SearchType the type of search

navController

NavController the nav controller

viewModel

BookInfoScreenViewModel the viewmodel for the screen

See also