吕彦

Results 15 issues of 吕彦

设置isConvertDaysToHours属性后,时间显示异常 带天显示时间如下 ![image](https://user-images.githubusercontent.com/18045999/35603334-de44d5b8-0677-11e8-8a0b-2b79aaa48a8e.png) 设置`isConvertDaysToHours`后,小时本应该为`167`,而且小时紧贴着冒号 ![image](https://user-images.githubusercontent.com/18045999/35603357-f4c176a2-0677-11e8-9a6a-ef0abbeae003.png) ![image](https://user-images.githubusercontent.com/18045999/35603381-0f36ffa2-0678-11e8-8053-ad3be8b93917.png)

bug

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',...

stale

**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 ![QQ截图20191211111754](https://user-images.githubusercontent.com/18045999/70588545-0c4e5e00-1c08-11ea-9ec4-a3f7abab4d17.png)

例如`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.

enhancement