Open npu3pak opened 1 month ago
Sharing is not implemented on the Console screen.
Result: Nothing happens.
To fix the issue you should implement the handleShareAction() method in the AppConsoleViewModel. Example:
func handleShareAction() { let allData = data.joined(separator: "\n") FileSharingManager.generateFileAndShare(text: allData, fileName: "console") }
Open the PR 🤣
Sharing is not implemented on the Console screen.
Result: Nothing happens.
To fix the issue you should implement the handleShareAction() method in the AppConsoleViewModel. Example: