flutter_learning_demo icon indicating copy to clipboard operation
flutter_learning_demo copied to clipboard

Results 1 flutter_learning_demo issues
Sort by recently updated
recently updated
newest added

``` Widget build(BuildContext context) { /// 对 中文 进行解码 String mName = FluroConvertUtils.fluroCnParamsDecode(widget.name); /// 对自定义类 进行解析 Person person = Person.fromJson(FluroConvertUtils.string2map(widget.personJson)); print(person.name); print(person.age); print(person.sex); /// 下面的写法也可以 Map data = FluroConvertUtils.string2map(widget.personJson); print(data["name"]);...