MihPackageToolBody class

A structural container for individual pages within a MihPackage.

MihPackageToolBody acts as the primary wrapper for page content. It provides consistent layout rules, including:

  • Responsive Padding: Automatically adjusts horizontal and vertical spacing based on screen size and the presence of a border.
  • Optional Framing: Can display a rounded border using borderOn.
  • Theme Integration: Border and background colors sync with MihColors.

This widget is typically used as an item in the appBody list of a MihPackage.

Example:

MihPackageToolBody(
  backgroundColor: Colors.white,
  borderOn: true,
  borderColor: Colors.blue,
  bodyItem: Center(child: Text("Page Content")),
)
Inheritance

Constructors

MihPackageToolBody({Key? key, required Color backgroundColor, Color? borderColor, bool? borderOn, required Widget bodyItem, bool? darkMode, double? innerHorizontalPadding})
const

Properties

backgroundColor Color
The background color of the content area.
final
bodyItem Widget
The main widget to be displayed inside this body container.
final
borderColor Color?
The color of the outer border. Defaults to MihColors.secondary if null.
final
borderOn bool?
Whether to display a 3.0 width rounded border around the content.
final
darkMode bool?
Whether to use Dark Mode styling for default border colors.
final
hashCode int
The hash code for this object.
no setterinherited
innerHorizontalPadding double?
Custom horizontal padding. Defaults to 10.0 if borderOn is true, otherwise 0.0.
final
key Key?
Controls how one widget replaces another widget in the tree.
finalinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

createElement() StatefulElement
Creates a StatefulElement to manage this widget's location in the tree.
inherited
createState() State<MihPackageToolBody>
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, int wrapWidth = 65}) 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