Package-level declarations

Functions

Link copied to clipboard
fun AccountInfo(user: MUser, navController: NavController, viewModel: AccountScreenViewModel)

Account Info

Link copied to clipboard
fun AccountListings(bookListings: List<MBook>, currentlyEditingBook: MutableState<MBook?>, viewModel: AccountScreenViewModel = viewModel(), navController: NavController)

Account Book Listings

Link copied to clipboard
fun AppLogo(appLogoSize: Dp = 60.dp, namePlateSize: Dp = 200.dp, namePlateTopPadding: Dp = 0.dp, namePlateRegistered: Boolean = true)

This composable is the AppLogo. It displays the app logo.

Link copied to clipboard

This composable is the app logo. It displays the app logo.

Link copied to clipboard

This composable is to view the AppSplashScreenLogo.

Link copied to clipboard
fun BookConditionDropdown(selectedCondition: String, onConditionSelected: (String) -> Unit)

This composable is the Book Condition Dropdown. It displays a dropdown for the user to select the condition of their book.

Link copied to clipboard
fun BookInfoView(book: MBook, user: MUser, viewModel: BookInfoScreenViewModel = viewModel())

Displays the book info

Link copied to clipboard
fun BookListingItem(book: MBook, viewModel: AccountScreenViewModel, currentlyEditingBook: MutableState<MBook?>, navController: NavController)

Book Listing Item

Link copied to clipboard
fun BookListingRows(rowItems: List<MBook>, viewModel: AccountScreenViewModel, currentlyEditingBook: MutableState<MBook?>, navController: NavController)

Book Listing Rows

Link copied to clipboard
fun BookThumbnail(book: MBook, viewModel: BookInfoScreenViewModel = viewModel(), navController: NavHostController)

This composable is the Book Thumbnail. It displays a thumbnail for the user to see the book.

Link copied to clipboard

This composable is the Bottom Navigation Bar. It displays a bottom navigation bar for the user to navigate between screens.

Link copied to clipboard
fun CategoryCard(category: String, bookImageUrl: String, navController: NavHostController)

A card that displays a book category

Link copied to clipboard

This composable is the Conditions Descriptions. It displays a list of conditions

Link copied to clipboard

Condition Tooltip Composable that displays a tooltip for the user to see the condition.

Link copied to clipboard
fun ConfirmDialog(title: String, content: String, isVisible: Boolean, confirmButtonText: String, onClick: () -> Unit)

This composable is the confirmation dialog when the user is about to perform an important action and might want to confirm before proceeding.

Link copied to clipboard
fun ContactSellerDialog(isVisible: Boolean, onDismissAction: () -> Unit, onConfirmAction: () -> Unit, book: MBook, user: MUser, viewModel: BookInfoScreenViewModel)

This composable is the Contact Seller Dialog. It is an Alert Dialog that is displayed after a user expresses interest in a book listing and would like to contact the seller.

Link copied to clipboard
fun DestructiveActionDialog(isVisible: Boolean, onConfirmAction: () -> Unit, onDismissAction: () -> Unit, title: String, text: AnnotatedString, confirmButtonText: String, dismissButtonText: String, imageVector: ImageVector)

This composable is the Destructive Action Dialog. It displays a dialog for the user to confirm a destructive action, such as deletion or logging out.

Link copied to clipboard
fun DisplayCategories(bookCategories: HashMap<String, MBook>, navController: NavHostController)

Displays the categories of books.

Link copied to clipboard
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

Link copied to clipboard
fun EditBookDialog(book: MBook, onConfirm: (MBook) -> Unit, onDismiss: () -> Unit)

This composable is the Book Edit Alert. It displays a card for a book in the account screen to edit.

Link copied to clipboard
fun EditProfileDialog(viewModel: AccountScreenViewModel, onDismissAction: () -> Unit, isVisible: Boolean)

This composable is the Edit Profile Dialog. It displays a dialog for the user to edit their profile.

Link copied to clipboard
fun EmailInput(modifier: Modifier = Modifier, emailState: MutableState<String>, labelId: String = "Email", enabled: Boolean = true, imeAction: ImeAction = ImeAction.Next, onAction: KeyboardActions = KeyboardActions.Default)

This composable is the Email Input Field. It displays an input field for the user to enter their email.

Link copied to clipboard
fun ErrToolTip(message: String, contentDescription: String)

Error Tooltip Composable that displays a tooltip for the user to see the error.

Link copied to clipboard
fun ExpandableText(text: String, maxLines: Int, modifier: Modifier, fontSize: Int)

This composable is a Expandable Text Component It is reusable, and allows you to neatly display overflowing text, by being able to toggle between expanded and collapsed state

Link copied to clipboard
fun FirstNameInput(modifier: Modifier = Modifier, firstNameState: MutableState<String>, labelId: String = "First Name", enabled: Boolean = true, imeAction: ImeAction = ImeAction.Next, onAction: KeyboardActions = KeyboardActions.Default)

This composable is the FirstName Input Field. It displays an input field for the user to enter their first name.

Link copied to clipboard

This function displays the buttons on the home screen.

Link copied to clipboard
fun InputField(modifier: Modifier = Modifier, valueState: MutableState<String>, labelId: String, enabled: Boolean, isSingleLine: Boolean = true, keyboardType: KeyboardType = KeyboardType.Text, imeAction: ImeAction = ImeAction.Next, onAction: KeyboardActions = KeyboardActions.Default)

This composable is the Input Field. It displays an input field for the user to enter text.

Link copied to clipboard

This composable is the invite friends intent. It displays an intent for the user to invite friends.

Link copied to clipboard

ISBN Tooltip Composable that displays a tooltip for the user to see additional info about the ISBN.

Link copied to clipboard
fun LastNameInput(modifier: Modifier = Modifier, lastNameState: MutableState<String>, labelId: String = "Last Name", enabled: Boolean = true, imeAction: ImeAction = ImeAction.Next, onAction: KeyboardActions = KeyboardActions.Default)

This composable is the LastName Input Field. It displays an input field for the user to enter their last name.

Link copied to clipboard
fun NamePlate(size: Dp = 200.dp, overrideTopPadding: Dp = 50.dp, isRegistered: Boolean = true)

This composable is the txtChange name plate. It displays the txtChange name plate.

Link copied to clipboard
fun PasswordInput(modifier: Modifier, passwordState: MutableState<String>, labelId: String, enabled: Boolean, passwordVisibility: MutableState<Boolean>, imeAction: ImeAction = ImeAction.Done, onAction: KeyboardActions = KeyboardActions.Default, isCreateAccount: Boolean)

This composable is the Password Input Field. It displays an input field for the user to enter their password.

Link copied to clipboard

This composable is the Password Visibility Icon. It displays an icon for the user to toggle the visibility of their password.

Link copied to clipboard
fun PostListingForm(viewModel: SellScreenViewModel, loading: Boolean, message: String?)

This composable is the Post Listing Form. It displays a form for the user to post a listing.

Link copied to clipboard
fun PostListingMBS(onSheetDismissed: () -> Unit, viewModel: SellScreenViewModel = viewModel())

This composable is the Post Listing Modal Bottom Sheet. It displays a modal bottom sheet for the user to post a listing.

Link copied to clipboard
fun SavedToFavoritesButton(isChecked: Boolean, onClick: () -> Unit)

This composable is the SavedToFavoritesButton. It displays a button for the user to save a book to their favorites.

Link copied to clipboard
fun SelectionPill(option: ToggleButtonOption, selected: Boolean, onClick: (option: ToggleButtonOption) -> Unit = {})

This composable is the Book Condition Tooltip. It displays a tooltip for the user to see the condition of their book.

Link copied to clipboard
fun SellerInterestView(sellerInterestList: List<MBook>, viewModel: BookInfoScreenViewModel, navController: NavController)

This composable is the Seller Interest View. It configures the display of all of a user's book listings and the buyers that have expressed interest in purchasing the book.

Link copied to clipboard

This composable is the Sell FAB. It displays a floating action button for the user to sell a book.

Link copied to clipboard

This composable is the Sell Submit Button. It displays a button for the user to submit a listing.

Link copied to clipboard

This composable is the send feedback intent. It displays an intent for the user to send feedback.

Link copied to clipboard
fun SubmitButton(textId: String, loading: Boolean, validInputs: Boolean, onClick: () -> Unit)

This composable is the Submit Button. It displays a button for the user to submit their email and password.

Link copied to clipboard
fun ToggleButton(options: Array<ToggleButtonOption>, modifier: Modifier = Modifier, type: SelectionType = SelectionType.SINGLE, onClick: (selectedOptions: Array<ToggleButtonOption>) -> Unit = {})

This toggle button is a button that allows the user to select multiple options.

Link copied to clipboard

This composable is the App Bar. It displays the name of the current screen and a menu button

Link copied to clipboard
fun UserForm(loading: Boolean, isCreateAccount: Boolean = false, errorMessage: String?, viewModel: LoginScreenViewModel, onDone: (String, String, String, String) -> Unit = { firstName, lastName, email, pwd -> })

This composable is the User Form. It displays a form for the user to enter their email and password.

Link copied to clipboard

This composable is the Verification Dialog. It displays a dialog for the user to verify their email.

Link copied to clipboard
fun WithdrawInterestDialog(isVisible: Boolean, onDismissAction: () -> Unit, onConfirmAction: () -> Unit, book: MBook, interestObject: InterestObject, viewModel: BookInfoScreenViewModel)

This composable is the Withdraw Interest Dialog. It is displayed whenever a user would like to withdraw their interest in a book listing.