The plugin is added to my Flutter app using a local development pod like this:
pod 'face_native', :path => '../face_native/ios'
Inside face_native/ios/ I have my .podspec file and several Swift files under Classes/.
However, when I open my main Flutter iOS project in Xcode,
Xcode doesn’t show any syntax or compile-time errors for files inside Development Pods/face_native.
For example, even if I delete a bracket or write invalid Swift code, no red error appears until I build the project.
Xcode does show errors correctly for Swift files inside the main app target, but not for the development pod.