bodyUI method

dynamic bodyUI(
  1. dynamic context
)

Implementation

Widget bodyUI(BuildContext context) {
  return Column(
    children: [
      //News content UI
      Expanded(child: newsContentUI()),
      //Slide options
      const NewsSlideOptions(),
    ],
  );
}