吕彦
吕彦
设置isConvertDaysToHours属性后,时间显示异常 带天显示时间如下  设置`isConvertDaysToHours`后,小时本应该为`167`,而且小时紧贴着冒号  
It works well on emulator, however when I test on real device, there is the problem. Tested on Samsung SM 9550 and redmi K40. ```dart PlutoColumn( title: 'column3', field: 'column3',...
**my code** ``` Observable .just(1) .delay(1, TimeUnit.SECONDS) .compose( RxPermissions(this) .ensureEachCombined( *PermissionConstants.getPermissions(PermissionConstants.STORAGE), *PermissionConstants.getPermissions(PermissionConstants.CAMERA), *PermissionConstants.getPermissions(PermissionConstants.LOCATION), // when I delete this request,it's fine *PermissionConstants.getPermissions(PermissionConstants.PHONE) ) ) .subscribeOn(Schedulers.io()) .observeOn(AndroidSchedulers.mainThread()) .subscribe { LogUtils.d(it) @SuppressLint("MissingPermission") if...
现在支持的API与原生的sdk相比方法太少,某些功能的API无法调用到。 除此之外,有些方法 ```dart Future stopPush() async { print(flutter_log + "stopPush:"); await _channel.invokeMethod('stopPush'); } ``` 返回值类型是future,为什么不加return? 我调用await stopPush直接给我卡住不走了
**Describe the bug** A clear and concise description of what the bug is. ```dart await FilterListDialog.display( this, listData: data, choiceChipLabel: (T? data) => titleBuilder?.call(data), validateSelectedItem: selectedDataValidator, onItemSearch: (T data, String...
see the attached image 
例如`icon-test`的name被生成为`icon_test` 而且图标名称末尾的`-`和`_`会被删除 例如`icon-test-`或者`icon-test_`被生成为`icon_test` 这样在服务器返回字符串去匹配的时候就会失败
## 功能需求 [Feature]: 需求描述 ```dart class BrnMultiSelectBottomPickerItem{ String code; //选项编号 String content; //选项内容 bool isChecked; //是否选中 MultiSelectBottomPickerItem(this.code, this.content,{ this.isChecked:false}); } ``` 很多时候选择完成后需要原始数据,否则只能根据code去比对,比较麻烦
Very nice lib! It would be better if treeNode has generic type to make it easier to access data's fields without cast.