reportAdWidget method

Widget reportAdWidget()

Implementation

Widget reportAdWidget() {
  return Container(
      width: (buttonWidth),
      height: buttonHeight,
      decoration: const BoxDecoration(
        color: Colors.white,
      ),
      child: FixGestureDetector(margin: const EdgeInsets.fromLTRB(0, 0, 0, 0), bgColor: Colors.white, text: StringsConsent.reportThisAd, size: 12, tap: () {
        setState(() {
          showConsent = true;
        });
      },
      ),
    );
}