版本号合规验证
bool isAppVersion(String input) { if (input.isEmpty) return false; return RegExp(r'^\d+(\.\d+){2,}$').hasMatch(input); }