mason-Wang

Results 2 issues of mason-Wang

When swiping the second and second-to-last items left or right, even if the element content doesn't change, a layout reset will still be triggered, causing the swiping animation to fail.

renderer: native
size: xs

js_driver_napi.cc的CreateJsDriver方法中,未设置JSHVMInitParam的group_id,导致后续创建engine的时候,group_id固定为-1; ` static napi_value CreateJsDriver(napi_env env, napi_callback_info info) { #ifdef JS_V8 ... #elif JS_JSH auto param = std::make_shared(); param->is_debug = is_dev_module; // 此处需要设置group_id if (has_vm_init_param) { } #else auto param...