arcticfox

Results 40 comments of arcticfox

@ghostsatan 请查看云课堂自动私信领取课件

Since Lua itself does not have such a mechanism, it may be difficult to implement. Do you have any suggestions for implementation?

@johannphilippe It supports the Lua C API, for which you can refer to the [flutter_lua_dardo](https://github.com/arcticfox1919/flutter_lua_dardo). I already have plans to upgrade null safety, but it may take some time

An example: ```dart import 'package:lua_dardo/lua.dart'; import 'dart:math'; // wrapper function must use this signature:int Function(LuaState ls) int randomInt(LuaState ls) { int max = ls.checkInteger(1); ls.pop(1); var random = Random(); var...

能提供一个需要多个FlutterScanKit的真实使用场景吗,绝大部分时候,扫码页面只需要一个

第一段日志看,相机打开失败 建议直接下载华为的原生[demo apk](https://developer.huawei.com/consumer/cn/doc/development/HMSCore-Examples/android-sample-code-0000001050734383) 验证一下设备是否存在什么问题

使用的是自定义扫码还是简单扫码?闪退的设备是什么型号?

@git-boya 这可能是华为扫码库的BUG,可能与具体手机的屏幕大小有关,据其他人反馈,在其中几款机型上,设置不同的自定义扫描区域大小,其中有些值会导致crash,建议你可以使用不同的扫描区域大小来测试该问题

@ariona Does this problem happen when the scan page is pulled up from the webview page? What is the iOS version?

功能上可以,但目前Flutter插件未封装此功能