getReactiveView method
Implementation
Widget getReactiveView(Widget view)
{
// wrap in visibility detector?
if (needsVisibilityDetector) view = VisibilityDetector(key: ObjectKey(this), onVisibilityChanged: onVisibilityChanged, child: view);
// wrap in tooltip?
if (tipModel != null) view = TooltipView(tipModel!, view);
// wrap animations
if (this.animations != null)
{
var animations = this.animations!.reversed;
animations.forEach((model) => view = model.getAnimatedView(view));
}
return view;
}