buildPageContent method

Widget buildPageContent(
  1. String text
)

Implementation

Widget buildPageContent(String text){
  return Container(
    padding: EdgeInsets.all(15),
    color: MyColors.grey_5,
    child: Stack(
      children: <Widget>[
        Text(text, textAlign : TextAlign.justify, style: MyText.medium(context).copyWith(
          color: MyColors.grey_80, fontFamily: "serif", height: 1.6
        ))
      ],
    ),
  );
}