Rick Bordelon
Rick Bordelon
@rschroeder I'm new to MAUI. Where did you put your `KeyboardAvoidingScrollViewHandler`? When I copied that code into my project, .NET MAUI can't seem to find things like `NSObject` and `UIKeyboardEventArgs`....
Neither of those using statements are found in my project... Do I need to configure something in my project to get those namespaces?
Oh, I figured it out. If you are not currently targeting iOS or Mac in your build options, IDEs will not pickup that you are trying to use an Apple...
For anybody interested, this is what is going in my MAUI project to handle this bug. It was influenced by @rschroeder 's answer but takes an alternative approach. The below...