com.vaadin.flow.component.applayout.

Class AppLayout

    • Constructor Detail

      • AppLayout

        public AppLayout()
    • Method Detail

      • setPrimarySection

        public void setPrimarySection(AppLayout.Section primarySection)

        Defines whether navbar or drawer will come first visually.

        Parameters:

        primarySection - new value for the primarySection property. Not null.

        Throws:

        NullPointerException - if primarySection is null.

      • isDrawerOpened

        @Synchronize(value="drawer-opened-changed")
        public boolean isDrawerOpened()

        Whether the drawer is opened (visible) or not. Its default value depends on the viewport:

        • true for desktop size views
        • false for mobile size views

        Returns:

        true if the drawer is opened (visible). false otherwise.

      • isOverlay

        @Synchronize(value="overlay-changed")
        public boolean isOverlay()

        Note: This property is controlled via CSS and can not be changed directly.

        Returns:

        true if drawer is an overlay on top of the content. false otherwise.

      • getContent

        public Component getContent()

        Returns:

        the displayed content

      • setContent

        public void setContent(Component content)

        Sets the displayed content.

        Parameters:

        content - Component to display in the content area

      • addToDrawer

        public void addToDrawer(Component... components)

        Adds the components to the drawer slot of this AppLayout.

        Parameters:

        components - Components to add to the drawer slot.

        Throws:

        NullPointerException - if any of the components is null or if the components array is null.

      • addToNavbar

        public void addToNavbar(Component... components)

        Adds the components to the navbar slot of this AppLayout.

        Parameters:

        components - Components to add to the navbar slot.

        Throws:

        NullPointerException - if any of the components is null or if the components array is null.

      • addToNavbar

        public void addToNavbar(boolean touchOptimized,
                                Component... components)

        Adds the components to the navbar slot of this AppLayout.

        Parameters:

        touchOptimized - if true, the components will be moved to the bottom navbar area on mobile devices.

        components - Components to add to the navbar slot.

        Throws:

        NullPointerException - if any of the components is null or if the components array is null.

      • remove

        public void remove(Component... components)

        Removes the child components from the parent. Components can be in any slot or be the main content.

        Parameters:

        components - Components to remove.

      • afterNavigation

        protected void afterNavigation()

        Called after a navigation event. The default behaviour is to close the drawer on mobile devices after a navigation event.