bloomIslandAttribute top-level constant

String const bloomIslandAttribute

DOM attribute name used to identify an island placeholder and specify its registered name.

Placeholder elements carrying this attribute (e.g. data-bloom-island="shopping-cart") are discovered by BloomIslandOrchestrator.scan and hydrated on demand.

Div(
  attrs: {bloomIslandAttribute: 'user-profile'},
  children: [/* static SSR fallback */],
)

Implementation

const String bloomIslandAttribute = 'data-bloom-island';