-
```
var gcanvas = GCanvas.start(ref);
var ctx = gcanvas.getContext('2d');
ctx.fillText("Hello World",10,50);
```
![image](https://user-images.githubusercontent.com/7123339/35372708-54f3474a-01d…
-
集成需要so包吗?现在没有so包报错。
java.lang.UnsatisfiedLinkError: Native method not found: com.taobao.gcanvas.GCanvasJNI.newCanvas:(Ljava/lang/String;I)V
…
-
Android Bundling failed 45688ms
Unable to resolve "@flyskywhy/react-native-gcanvas/packages/gcanvas/src/context/2d/RenderingContext" from "node_modules\@flyskywhy\react-native-browser-polyfill\src\wi…
-
Hi, when i try to use the single stroke font with the gcanvas, it still converting it to the multiple path g codes, is there a way to achieve single stroke text with gcanvas? Thanks~~~
-
For version react-native-gcanvas:0.0.6
in `react-native-gcanvas/android/build.gradle` :
```
compileOnly project(':android:gcanvas_library')
compileOnly project(':android:bridge_spec')
compileOn…
-
I run `weex plugin add weex-gcanvas`and modified it because of version conflict [issue](https://github.com/weex-plugins/weex-plugin-gcanvas/issues/37) .
1. I globally registered `gcanvas` in my …
-
使用以下两个方法都不能集成:
•命令行集成 weexpack plugin add weex-gcanvas
报错: Error: Cannot read property 'statusCode' of undefined
•手动集成 在相应工程的build.gradle文件的dependencies中添加compile 'org.weex.plugin:weexgca…
-
Hey, found one curious case on iOS (im not sure, but probably this problem on Android as well, still investigate)
We have screen with GCanvas, after some attempts to open this screen, we got crashes.…
-
ctx.fillText('1测试文本g', 100, 100)
绘制后:只显示 1g
GCanvas上已标记BUG
-
在集成GCanvas到ReactNative环境后,我发现使用webgl context连基本的clearColor和clear都无法工作,后来自己摸索了一会,发现bridge-reactnative.js里的flushNative和callNative实现是空的,我把bridge-weex.js里的代码挪过去后,就可以正常工作了。我想问GCanvas对于ReactNative下webgl的支持是…