0
번호 :Flutter에서 사용자 정의 페인트의 원점을 변경하는 방법은 무엇입니까? <code>CustomPaint</code>위한
return new Scaffold(
body:
new GestureDetector(
onTap:() {
debugPrint("hello");
},
child:
new Container(
alignment: FractionalOffset.center,
child: new CustomPaint(
size: new Size(400.0, 400.0),
painter: new BarChartPainter(currentHeight),
))),
);
//x axis code
canvas.drawLine(new Offset(0.0, 0.0), new Offset(500.0, 0.0), paintAx);```
X 축 코드 (500,0) 내지 (0,0)로부터의 라인을 그리는 것이라고 Paint
의 상자의 상단에있다. 원점은 상자의 왼쪽 상단에 있습니다. 페인트 상자의 왼쪽 하단에 (0,0)이되도록 원점을 어떻게 변경합니까?