Jun Gu

Results 13 issues of Jun Gu

```kotlin private class LinkMovementMethodTouchListener : View.OnTouchListener { override fun onTouch( v: View, event: MotionEvent ): Boolean { val widget = v as TextView val action = event.action if (widget.text is...

```kotlin vOfficialCommunity.vText.text = span { communities.forEachIndexed { i, community -> image(getDrawable(community)!!) { } // TODO Kpan horizontal spacing if (i < communities.size - 1) { +" " } } }...

enhancement

enhancement

我在一个TabBarView的一个page中用了这个组件,然后page左右滑动会触发attach和detach,这个时候会触发一个exception: ![image](https://user-images.githubusercontent.com/8072733/62200083-433d7900-b3b7-11e9-8727-bd03d779a3ea.png) 然后把下面这两个方法注释掉之后就好了 ![image](https://user-images.githubusercontent.com/8072733/62200113-551f1c00-b3b7-11e9-8be8-2942b1c37261.png)

fix #22 测试下来没问题,代码可能要调整一下,另外看上去似乎因为Flutter内部的BUG导致的

![image](https://user-images.githubusercontent.com/8072733/60958431-ef4fef00-a338-11e9-92ef-2f9497b1ab13.png) ```dart import 'package:flutter/gestures.dart'; import 'package:flutter/material.dart'; import 'package:real_rich_text/real_rich_text.dart'; void main() => runApp(MyApp()); class MyApp extends StatefulWidget { @override _MyAppState createState() => _MyAppState(); } class _MyAppState extends State { @override Widget...