Implement HtmlCanvas; move some tests to commonTest

This commit is contained in:
2019-04-09 06:39:38 -05:00
parent 7ba7edb7d4
commit 5c402b5400
17 changed files with 288 additions and 64 deletions

View File

@@ -25,8 +25,8 @@ import UIKit
class IosCanvasTest : XCTestCase {
func testDraw() {
UIGraphicsBeginImageContext(CGSize(width: 500, height: 400))
let canvas = IosCanvas(withBounds: CGRect(x: 0, y: 0, width: 500, height: 400))
canvas.setColor(color: Color(rgb: 0x303030))
canvas.fillRect(x: 0.0, y: 0.0, width: 500.0, height: 400.0)