getCustomLayout method

Widget getCustomLayout()

获取自定义布局

Implementation

Widget getCustomLayout() {
  /**
   * 是否使用appbar
   */
  if (isUseAppBar()) {
    return Scaffold(
      body: Column(
        children: [_getAppBar(), Expanded(child: _getLayout())],
      ),
    );
  } else {
    return _getLayout();
  }
}