kwithElseShowFun method

Widget kwithElseShowFun(
  1. bool isShow(),
  2. Widget widget
)

判断显示哪个控件

Implementation

Widget kwithElseShowFun(bool Function() isShow, Widget widget) {
  return isShow() ? this : widget;
}