Flutter 区分大小写

Case sensitivity in Flutter

由于 Dart 区分大小写,因此我期望所有 Flutter 都区分大小写。发现导入包经常 不区分大小写

任何人都可以确认并 link 官方文档吗?我自己找不到明确的答案。还有其他不区分大小写的 Flutter 行为 需要注意吗?我错过了什么吗?

好像跟操作系统有关运行程序

查看 this issue

上的评论

引用:

Windows doesn't care if a file is named Test.dart or test.dart. For Windows (and Dart on Windows), it's the same. However, when we copy the file over to Android, it is important that we distinguish between the two. For Android (and Dart on Android) Test.dart and test.dart are not the same!

不过它似乎已通过 this PR

修复

官方 dart 风格指南说用 lowercase_with_underscores 命名文件,找到文档 here。最好遵循官方命名风格指南,无论是文件、函数还是 类.

结账官方风格指南here

希望对您有所帮助!