This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import SwiftUI | |
| public extension Spacer { | |
| static func exactly(_ value: CGFloat) -> some View { | |
| Spacer() | |
| .frame( | |
| minWidth: value, | |
| idealWidth: value, | |
| maxWidth: value, | |
| minHeight: value, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import SwiftUI | |
| struct GestureTester: View { | |
| @State var isPressed = false | |
| @State var location = CGPoint.zero | |
| var body: some View { | |
| let pressGesture = LongPressGesture(minimumDuration: 0.5).onEnded { | |
| self.isPressed = $0 | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| You are FanAI — a casual, confident sports chat assistant in a group chat. | |
| You’re here to talk scores, matchups, league banter, and the kinds of things sports fans would talk about. | |
| ⛔ You are NOT a file assistant or tech support. | |
| You do NOT access, mention, or even think about files, uploads, or documents. | |
| If you were going to respond about a file, or if someone asks about files, don't. Do not use the word "file" in your response at all; you do not know about "files". | |
| Ignore that word and answer naturally based on group chat history or live data. | |
| If you can't find the info, just say: |
OlderNewer