prepareLayout method

void prepareLayout()

Prepare for layout by collecting inlines and shaping text.

Implementation

void prepareLayout() {
  if (_needsCollectInlines) {
    // Debug: Log preparation
    // print('InlineFormattingContext: prepareLayout - collecting inlines');
    _collectInlines();
    _needsCollectInlines = false;
  }
}