buildViewTips method

Widget buildViewTips()

Implementation

Widget buildViewTips() {
  return Container(
      height: 45,
      color: UIColors.white,
      alignment: Alignment.topCenter,
      padding: EdgeInsets.only(top: 8),
      child: Text(
        Strings.liveViewPreviewTips,
        style: TextStyle(fontSize: 12, color: UIColors.color_999999),
      ));
}