We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
以下是插件源码 /** * 判断Directory中是否包含这个file */ fun containsDirectoryFile(directory: PsiDirectory, fileName: String): Boolean { return directory.files.filter { it.name.endsWith(".dart") } .firstOrNull { it.name.contains(fileName) } != null }
如果我同一个文件夹中先创建了home_tab_entity,之后就创建不了tab_entity了
The text was updated successfully, but these errors were encountered:
好的,我最近会看看这个问题 然后修复的
Sorry, something went wrong.
已经修复了
zmtzawqlp
No branches or pull requests
Content
以下是插件源码
/**
* 判断Directory中是否包含这个file
*/
fun containsDirectoryFile(directory: PsiDirectory, fileName: String): Boolean {
return directory.files.filter { it.name.endsWith(".dart") }
.firstOrNull { it.name.contains(fileName) } != null
}
如果我同一个文件夹中先创建了home_tab_entity,之后就创建不了tab_entity了
The text was updated successfully, but these errors were encountered: