onInit method

  1. @override
void onInit()
override

Called immediately after the widget is allocated in memory. You might use this to initialize something for the controller.

Implementation

@override
void onInit() {
  _onResized = PlatformUtils.onResized.listen(
    (v) => _windowProvider?.upsert(
      WindowPreferences(
        width: v.key.width,
        height: v.key.height,
        dx: v.value.dx,
        dy: v.value.dy,
      ),
    ),
  );
  _onMoved = PlatformUtils.onMoved.listen(
    (v) => _windowProvider?.upsert(WindowPreferences(dx: v.dx, dy: v.dy)),
  );
  super.onInit();
}