NavigationTab

data class NavigationTab(val title: String, val icon: ImageVector, val contentDescription: String) : NavigatorTab<String>

The NavigationTab data class represents the information about a tab used to navigate between the screens of the application

Author

N7ghtm4r3 - Tecknobit

Since

1.0.0

Parameters

title

The title of the tab

icon

The representative icon of the tab

contentDescription

The content description for the accessibility

See also

Constructors

Link copied to clipboard
constructor(title: String, icon: ImageVector, contentDescription: String)

Properties

Link copied to clipboard
open override val contentDescription: String
Link copied to clipboard
open override val icon: ImageVector
Link copied to clipboard
open override val title: String