wTextWaterMark method

Widget wTextWaterMark()

Implementation

Widget wTextWaterMark() {
  return Stack(
    children: [
      wPage(),
      IgnorePointer(
        child: WaterMark(
          painter: TextWaterMarkPainter(
            text: 'Flutter 中国 @wendux',
            padding: const EdgeInsets.all(18),
            textStyle: const TextStyle(
              color: Colors.black38,
            ),
            rotate: -10,
          ),
        ),
      ),
    ],
  );
}