createonlyColumWidget method

Widget createonlyColumWidget(
  1. BuildContext context
)

getx 真实包裹的colum 方法

Implementation

Widget createonlyColumWidget(BuildContext context) {
  return Column(
    children: [
      createHeaderWidget(),
      Expanded(
        child: createBody(context),
      ),
    ],
  );
}