fromView method

Implementation

@mustCallSuper
ViewController fromView(BaseView view) {
  child = view.child;
  roots = view.initRootProperties();

  /// ROOT PROPERTIES
  _initCallback(view);
  _initClick(view);

  /// BASE PROPERTIES
  _initAnimations(view);
  _initConditions(view);
  _initDecorations(view);
  _initEffects(view);
  _initDimens(view);

  /// OTHER PROPERTIES
  _initBackdrop(view);
  _initBorder(view);
  _initBorderRadius(view);
  _initIndicator(view);
  _initMargin(view);
  _initOpacity(view);
  _initPadding(view);
  _initShadow(view);
  return this;
}