SmolLens
SmolLens copied to clipboard
Send message button is not working
Look what is wrong here:
Button(action: { camera.capturePhoto { if let image = camera.capturedImage { analysisService.analyzeImage( image, prompt: questionText) } isAskViewPresented = false camera.reset() questionText = "" } }) { Image(systemName: "paperplane.fill") .foregroundStyle(.gray) .accessibilityLabel("Send") } .disabled(questionText.isEmpty)