FluidNavBar class

A widget to display a fluid navigation bar with icon buttons.

Basic usage

{@tool sample}

FluidNavBar(
  icons: [
    FluidNavBarIcon(iconPath: "assets/home.svg"),
    FluidNavBarIcon(iconPath: "assets/favorites.svg"),
  ]
)

{@end-tool}

Inheritance

Constructors

FluidNavBar({Key? key, required List<FluidNavBarIcon> icons, FluidNavBarChangeCallback? onChange, FluidNavBarStyle? style, double animationFactor = 1.0, double scaleFactor = 1.2, int defaultIndex = 0, FluidNavBarItemBuilder? itemBuilder})

Properties

animationFactor double
Delay to adjust the overall delay of the animations
final
defaultIndex int
Default Index is used for setting up selected item on start of the application. By default set to 0, meaning that item with index 0 will be selected.
final
hashCode int
The hash code for this object.
no setterinherited
icons List<FluidNavBarIcon>
The list of icons to display
final
itemBuilder FluidNavBarItemBuilder
final
key Key?
Controls how one widget replaces another widget in the tree.
finalinherited
onChange FluidNavBarChangeCallback?
A callback called when an icon has been tapped with its index
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
scaleFactor double
The scale factor used when an icon is tapped 1.0 means that the icon is not scaled and 1.5 means the icons is scaled to +50% An optional builder to change or wrap the builded item
final
style FluidNavBarStyle?
The style to use to paint the fluid navigation bar and its icons
final

Methods

createElement() StatefulElement
Creates a StatefulElement to manage this widget's location in the tree.
inherited
createState() State<StatefulWidget>
Creates the mutable state for this widget at a given location in the tree.
override
debugDescribeChildren() List<DiagnosticsNode>
Returns a list of DiagnosticsNode objects describing this node's children.
inherited
debugFillProperties(DiagnosticPropertiesBuilder properties) → void
Add additional properties associated with the node.
inherited
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toDiagnosticsNode({String? name, DiagnosticsTreeStyle? style}) DiagnosticsNode
Returns a debug representation of the object that is used by debugging tools and by DiagnosticsNode.toStringDeep.
inherited
toString({DiagnosticLevel minLevel = DiagnosticLevel.info}) String
A string representation of this object.
inherited
toStringDeep({String prefixLineOne = '', String? prefixOtherLines, DiagnosticLevel minLevel = DiagnosticLevel.debug}) String
Returns a string representation of this node and its descendants.
inherited
toStringShallow({String joiner = ', ', DiagnosticLevel minLevel = DiagnosticLevel.debug}) String
Returns a one-line detailed description of the object.
inherited
toStringShort() String
A short, textual description of this widget.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Constants

nominalHeight → const double