getCustomLayout method

Widget getCustomLayout()

获取自定义布局

Implementation

Widget getCustomLayout() {
  /**
   * 是否使用appbar
   */
  Widget? appBar = getAppBar();
  if (appBar != null) {
    return Scaffold(
      backgroundColor: getPageBgColor(),
      body: Column(
        children: [_getAppBar(), Expanded(child: _getLayout())],
      ),
    );
  } else {
    return _getLayout();
  }
}