I'm using PathBuilder in order to create a list of...
# compose
p
I'm using PathBuilder in order to create a list of PathNode and then use DrawVector to draw it. My problem is that DrawVector need explicitly the size but I would like draw the path as large as the screen, something as LayoutWidth.Fill So, how can I may have this behaviour ?
z
You could wrap your DrawVector in WithConstraints and use max width and max height from the constraints
p
Thanks