flutter_daydart icon indicating copy to clipboard operation
flutter_daydart copied to clipboard

addZero

Open zhuxiwen opened this issue 5 years ago • 1 comments

String addZero(String m){ return int.parse(m) < 9 ? '0$m' : m; } <是不是应该改成<=

zhuxiwen avatar Sep 05 '19 08:09 zhuxiwen

Changed to <= worked

chrystoffer avatar Mar 09 '20 17:03 chrystoffer