CommonLayoutWidget class

Provides its child with both CommonLayout and the breakpoint-specific RawSpacings

All RawSpacings are optional and if none is provided, it uses the default values found in SpacingsInheritedWidget.defaultSpacings. These spacings act like an auxiliar set of fields that:

  • help the related code to be less prone to hardcoded values (provides type-safety with the usage of Spacing);
  • alongside the provided utilities, makes handling spacings less verbose by handling the proxying the logic to this instance's resolver.

Because CommonLayoutWidget uses a LayoutBuilder to get its device constraints, no MaterialApp (or MediaQueryData) is required above/below this widget.

Inheritance
Available Extensions

Constructors

CommonLayoutWidget({required Widget child, CommonLayout resolverBuilder(BoxConstraints deviceConstraints)?, RawSpacings? spacings})
Creates a CommonLayoutWidget with a single default spacings for all breakpoints
const
CommonLayoutWidget.withResponsiveSpacings({required Widget child, CommonLayout resolverBuilder(BoxConstraints deviceConstraints)?, RawSpacings? desktopSpacings, RawSpacings? tabletSpacings, RawSpacings? phoneSpacings, RawSpacings? tinyHardwareSpacings})
Creates a CommonLayoutWidget with specified breakpoints spacings
const

Properties

child Widget
final
desktopSpacings RawSpacings?
Spacings corresponding to the CommonBreakpoint.desktop
final
hashCode int
The hash code for this object.
no setterinherited
key Key?
Controls how one widget replaces another widget in the tree.
finalinherited
phoneSpacings RawSpacings?
Spacings corresponding to the CommonBreakpoint.phone
final
resolverBuilder → (CommonLayout Function(BoxConstraints deviceConstraints)?)
Provides a BoxConstraints to build this widget's resolver
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
tabletSpacings RawSpacings?
Spacings corresponding to the CommonBreakpoint.tablet
final
tinyHardwareSpacings RawSpacings?
Spacings corresponding to the CommonBreakpoint.tinyHardware
final

Methods

build(BuildContext context) Widget
Describes the part of the user interface represented by this widget.
override
createElement() StatelessElement
Creates a StatelessElement to manage this widget's location in the tree.
inherited
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

Static Methods

of(BuildContext context) CommonLayout
The resolver (CommonLayout) from the closest CommonLayoutWidget instance that encloses the given context.