DigiaInlineCanvas class

Renders an authored Canvas inside a DigiaSlot.

Deliberately does NOT use CampaignCanvasView. That widget fits the canvas against the screenscreen height − safe area − 48, with a 120 floor — which is correct for an overlay and wrong here twice over: an inline card lives inside a scrolling list where the available height is unbounded, so fitting to the viewport would hand back a screen-sized slice and shove the host's own content off the page.

The sizing rule instead comes entirely from width:

inner  = slotWidth − margin.horizontal
scale  = inner / designWidth
height = canvas.height × scale

A card spans its design frame, so a horizontal margin cannot make the canvas narrower — it narrows the room the card has, and the whole surface scales down uniformly to fit, type included. That makes side margin read as "make this card smaller" rather than "inset it", which is why the authored default is zero and a new card fills its slot.

One uniform factor, so children never reflow and text never re-wraps between devices — the card is the same shape everywhere, just larger or smaller. There is no upscale cap: a slot's width is chosen by the developer who placed it, so filling it is the intent (unlike a device viewport, which can be far wider than the design reference and would make a dialog absurd).

Inheritance

Constructors

DigiaInlineCanvas({required InlineCanvasConfig config, Key? key})
const

Properties

config InlineCanvasConfig
final
hashCode int
The hash code for this object.
no setterinherited
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

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, 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