Abner

Results 3 issues of Abner

能在在基金名下加个基金 code 吗

如果是用来熟悉项目,我建议去掉生命周期的调用,直接看类的调用链和类的调用入口会更快上手。 如果一个界面复杂,会打出太多log,反而没有之间看代码来的直接。 个人觉得这个项目可以用来优化项目比较直观。

``` import 'package:mustache/mustache.dart' as mustache; import 'file_system.dart'; void renderTemplate(String absoluteSourcePath, String finalDestinationPath, Map context) { final sourceFile = fs.file(absoluteSourcePath); final templateContents = sourceFile.readAsStringSync(); final renderedContents = mustache.Template(templateContents).renderString(context); final finalDestinationFile =...