Pedro Cavaleiro

Results 9 comments of Pedro Cavaleiro

Did you ever solved this problem? I'm currently having the same issue and I'm not finding how to fix it

So far I got some things working, but the IQPreviousNext isn't one of them

@hackiftekhar So far good, haven’t found any bugs on the features that I use (dismiss when tapped outside the TextField, changed the name of the toolbar button Done button and...

Sorry for the delayed response @MaxenceMax but I was extremely sick and did not used my computer until now. On the `AppDelegate.swift` ``` IQKeyboardManager.shared.enable = true IQKeyboardManager.shared.toolbarDoneBarButtonItemText = "Terminar" IQKeyboardManager.shared.shouldResignOnTouchOutside...

You can still implement it, go to the file where the @main is located, in the example below it's called `your_projectApp.swift` ``` // MARK: Add from here class AppDelegate: NSObject,...

> > You can still implement it, go to the file where the @main is located, in the example below it's called `your_projectApp.swift` > > ``` > > // MARK:...

You have two solutions, add the permissions to the Info.plist, the permissions are made on demand, or comment the whole classes that you don’t need I ended up commenting the...

Since I started targeting iOS 15 I no longer use IQKeyboardManager I felt that the OS was doing its thing and you could add the toolbar items on SwiftUI. I...

I was facing a similar issue until I did the following `websocketServer.AddWebSocketService("/ChatWithNyan", p => new Chat(" Nyan!"));` Although this fixed the error, I can't get the params to be passed...