Navigation Bar
data class NavigationBar<Scope : NavigationBar.Scope>(val scope: Scope, val id: EditorComponentId, val modifier: Modifier, val visible: Boolean, val enterTransition: EnterTransition, val exitTransition: ExitTransition, val decoration: ScopedDecoration<Scope>, val listBuilder: HorizontalListBuilder<EditorComponent<*>>, val horizontalArrangement: Arrangement.Horizontal, val itemDecoration: ScopedDecoration<Scope>) : EditorComponent<Scope>
A component for rendering the navigation bar at the top of the editor. Use NavigationBar.Companion.remember composable function to create an instance of this class. Check AbstractNavigationBarBuilder and its superclasses to see what each property does.
Constructors
Link copied to clipboard
constructor(scope: Scope, id: EditorComponentId, modifier: Modifier, visible: Boolean, enterTransition: EnterTransition, exitTransition: ExitTransition, decoration: ScopedDecoration<Scope>, listBuilder: HorizontalListBuilder<EditorComponent<*>>, horizontalArrangement: Arrangement.Horizontal, itemDecoration: ScopedDecoration<Scope>)
Types
Link copied to clipboard
Builder class of Button component inside the NavigationBar.
Link copied to clipboard
Scope of the Button component inside the NavigationBar.
Link copied to clipboard
object ListBuilder
Link copied to clipboard
Scope of the NavigationBar component.