requestRecompute method

void requestRecompute(
  1. Rect bounds
)

Requests a full recompute/redraw of the screen inside bounds.

Currently clears the entire buffer and clears dirty components.

Implementation

void requestRecompute(Rect bounds) {
  buffer.clear();
  _dirtyComponents.clear();
}