gg function

Widget gg({
  1. Style? style,
  2. List<Widget> children = const [SizedBox.shrink()],
  3. dynamic onTap,
})

Implementation

Widget gg(
    {Style? style, List<Widget> children = const [SizedBox.shrink()], onTap}) {
  Style styleProps = style ?? Style();
  Widget widget = flexManager(
      props: styleProps,
      children: children.isEmpty ? [SizedBox.shrink()] : children);
  return runManagerList(style: styleProps, widgetOld: widget, onTap: onTap);
}