Creating Tipkit but this error is appearing, complete beginner any help would be much appreciated Xcode Image Please Give Code solution
import Foundation
import TipKit
struct Example: Tip { Protocol 'Identifiable' requires 'id' to be available in iOS 16.0 and newer
var title: Text {
Text("Example Tip")
}
var message: Text? {
Text("Example Tip Subtitle")
}
var image: Image? {
Image(systemName: "globe")
}
}