简体   繁体   中英

Flutter custom painter line like word search

I try to make a word game for test purpose. I already make the puzzle using listview builder. But didnot able to make the selectable lines.

在此处输入图像描述

You can use CustomPaint in a stack with your other widget:

CustomPaint(
        foregroundPainter: LinesPainter(),
      ),

Then in your lines painter you can use:

    void drawRect (
  Rect rect,
  Paint paint
)

to draw a filled transparent rectangle between pointer down and current pointer

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM