wStaggerTextWaterMark method
Implementation
Widget wStaggerTextWaterMark() {
return Stack(
children: [
wPage(),
IgnorePointer(
child: WaterMark(
painter: StaggerTextWaterMarkPainter(
text: 'flukit@wendux',
text2: 'flukit@wendux',
padding1: const EdgeInsets.all(10),
padding2: const EdgeInsets.only(
left: 100,
right: 10,
top: 10,
bottom: 10,
),
rotate: -10,
),
),
),
],
);
}