BaseStatefulWidget<T extends StatefulWidget, C extends BaseController> constructor

const BaseStatefulWidget<T extends StatefulWidget, C extends BaseController>({
  1. Key? key,
  2. bool isCanBackPressed = true,
  3. double appbarHeight = 44.0,
  4. bool isNeedAppBar = true,
  5. bool isNeedScaffold = true,
  6. Color bodyColor = AppColors.bgColor,
  7. bool extendBodyBehindAppBar = false,
  8. bool resizeToAvoidBottomInset = false,
  9. List<Widget>? appBarActions,
})

Implementation

const BaseStatefulWidget({
  super.key,
  this.isCanBackPressed = true,
  this.appbarHeight = 44.0,
  this.isNeedAppBar = true,
  this.isNeedScaffold = true,
  this.bodyColor = AppColors.bgColor,
  this.extendBodyBehindAppBar = false,
  this.resizeToAvoidBottomInset = false,
  this.appBarActions,
});