【发布时间】:2021-06-27 10:58:16
【问题描述】:
我正在尝试制作一个数学问答游戏,以便显示我使用的数学方程式 flutter_tex,但唯一显示我的屏幕是一个错误,这里的一条非常细的线是一张图片: 代码很简单就是这个代码:
ListView(
children: [TeXView(
renderingEngine: TeXViewRenderingEngine.katex(),
child: TeXViewDocument(
r"""<h2>\( \rm\\TeXViewTest\) 1 with ripple</h2>""",
),
),
]
)
这是我得到的错误:
E/InputMethodManager(12646): b/117267690: Failed to get fallback IMM with expected displayId=22 actual IMM#displayId=0 view=io.flutter.plugins.webviewflutter.InputAwareWebView{30d1916 VFEDHVC.. ........ 0,0-848,4}
Reloaded 1 of 680 libraries in 504ms.
D/EGL_emulation(12646): eglMakeCurrent: 0xdce1a0c0: ver 3 1 (tinfo 0xdce0f030)
D/EGL_emulation(12646): eglMakeCurrent: 0xdce1a0c0: ver 3 1 (tinfo 0xdce0f030)
E/eglCodecCommon(12646): glUtilsParamSize: unknow param 0x000088ef
E/eglCodecCommon(12646): glUtilsParamSize: unknow param 0x000088ef
I/dev.qudorat_ap(12646): Background young concurrent copying GC freed 49665(1916KB) AllocSpace objects, 0(0B) LOS objects, 50% free, 1998KB/4011KB, paused 5.422ms total 31.072ms
我尝试了flutter_tex website 中的示例,但效果不佳。
感谢您的宝贵时间。
【问题讨论】:
标签: flutter dart tex flutter-tex