flutter 百分比转化,double 转百分比类型 String doubleToPercentage(double value) { return (value * 100).ceil().toString() + "%"; }