点線の境界線で円を描こうとしています。私はこれを試しました:
Shape shape = new Shape()
..graphics.beginPath()
..graphics.circle( 50 , 50, 50 )
..graphics.closePath()
..graphics.strokePattern(new GraphicsPattern.repeat(new BitmapData.fromImageElement(new HTML.ImageElement(src: "img/dash.png"))))
..addTo(stage);
}
しかし、円は表示されません。strokePattern 行が私のコードを壊しているようです。これを修正する方法はありますか?