appContent method

void appContent({
  1. required Widget? body,
  2. bool extendBody = false,
  3. bool extendBodyBehindAppBar = false,
})

Sets / removes the CodeMeltedUI.app content area.

Implementation

void appContent({
  required Widget? body,
  bool extendBody = false,
  bool extendBodyBehindAppBar = false,
}) {
  CAppView.content(
    body: body,
    extendBody: extendBody,
    extendBodyBehindAppBar: extendBodyBehindAppBar,
  );
}