onReassembled method

  1. @visibleForOverriding
void onReassembled()

Called before the view is reassembled. When this method is called on view life cycle on reassemble, and it guarantees that build lifecycle will be called. Quoting the docs:

Most widgets therefore do not need to do anything in the [reassemble] method.

Please be sure to read docs before use this life cycle.

Usage:

    class MyController extends Controller {
      @override
      void onReassembled() => print('View is about to be reassembled');
    }

Implementation

@visibleForOverriding
void onReassembled() {}