createBodyUI method

Widget createBodyUI()

Implementation

Widget createBodyUI() => Expanded(child: Container(
    decoration: BoxDecoration(
        borderRadius: BorderRadius.circular(20.sp),
        color: Colors.white,
        boxShadow: [
          BoxShadow(
              color: Colors.grey.withOpacity(0.5),
              spreadRadius: 1,
              blurRadius: 5,
              offset: const Offset(0, 1) // changes position of shadow
          )
        ]),
    margin: EdgeInsets.fromLTRB(60.sp, 40.sp, 60.sp, 0),
    child: subBodyUI()));