cn1001wang

Results 14 comments of cn1001wang

我也遇到相同的问题

顺便问一下, --- binding的作用是什么,官方文档好像没提,但是用get_cli生成会带上这个。还有就是GetMaterialApp( initialBinding: SplashBinding(), ) initialBinding是什么意思,我看AppPages里又有写binding,根下的initialBinding是起到什么作用。我点进去看他就是?.dependencies()

> After I upgraded webview_flutter to the latest 3.0.2,he graph cannot be displayed anymore. I had the same problem. How did you solve the problem?

do you solve this issue? I also run into this problem. my code is success in html, but it didn't work in flutter. I think he probably did not quote...

> do you solve this issue? I also run into this problem. my code is success in html, but it didn't work in flutter. I think he probably did not...

I slove this issue. ```dart var option={ "serires":[ {..., "data":[], "renderItem": "renderItemFunction", } ] } var str = json.encode(_op); var renderFunc="""function(params,api){return{}}""" var optionStr=str.replaceAll("\"renderItemFunction\"", renderFunc); ```

你的源码我已经看过了,本来可以直接使用widget.rows。是不是因为你要满足动态表单,直接使用widget.rows有什么bug吗?用insert和delete不太响应式啊,和用户的直觉不太一样。 ![image](https://user-images.githubusercontent.com/34416681/116176730-3ba23400-a745-11eb-9c00-58ff3bbdd227.png)

有一个需求,虽然不影响使用,由于我是从前端转过来的,写dart就是感觉每次要写很长一段。 需不需要在一开始的时候,提供配置初始化样式,因为比如设计稿给出的input是多大字号,什么颜色,向右还是向左对齐,不同页面也一般是固定。现在我的解决办法是建立一个变量textConfig,每次传入` fieldConfig: textConfig,`。