Components
Navigation

Navigation

A component with sections that can be hovered and selected.

Properties

NameTypeDescription
Sections{ string | Fusion.Child }The sections for the navigation component.
ActiveSectionFusion.UsedAs<number>?The index of the section in the Sections array to be active. (Set to nil to have no section active).
DefaultActiveSectionFusion.UsedAs<number?>?If no section is active then this section will automatically become active.
FillDirectionFusion.UsedAs<Enum.FillDirection>?The fill direction for the navigation (Defaults to Enum.FillDirection.Horizontal).

Example

Scope:Navigation {
  Sections = { "Hello World", "Baz", "Foo Bar" },
  DefaultActiveSection = 2,
  ActiveSection = 3
}