Maui Soft Keyboard Disable for Entry - maui

I know there is a bug for the soft keyboard hiding and I have read the work arounds, but I just curious if anyone has found a solid solution that allow the keyboard to not appear at all without effect the runtime? Im trying to build a barcode scanner app but the soft keyboard keeps appearing when focusing on the entry or when the scanner is inputting the data. I would like it to work on both android and iOS. =(

Related

Highlighting code with mouse goes wild in Visual Studio Code

When I try to highlight some code in Visual Studio code it goes crazy and moves very fast. E.g. I want to select around one page and end up selecting 10 "pages" worth of code.
How can I make it act normaly when I want to highlight some code?
I used to have the same issue. A weird behavior with mouse selection. This was my solution path.
Check for hardware failures.
Unplug the keyboard dongle. If suddenly the mouse selection goes well. Do this steps.
Check for keys stucked ✅
Uninstall the keyboard driver from Device Manager ✅
Change the dongle USB port ✅
And after all this steps, my cursor comes back to normality... for a while 😐.
Made the keyboard check with keyboard tester
Detect the key with the failure (Fortunately Insert in my case).
Download the app keytweak and disable that key.
This is a workaround if you don´t want to buy a new keyboard. I hope your failing key isn't any vocal 😬. If so... buy a new one.

Is there a way to disable the function keys shortcuts in VS Code?

I just got a new MacBook Pro with the which has a touch bar. Not sure what Apple was thinking, but this is one of the worst things ever.
Is there a way to disable the function keys shortcuts/commands in VS Code? Each time I'm coding I keep touching the touch bar - its annoying.

Swift - Soft keyboard won't appear OR Hardware keyboard won't work

I am trying to make the soft keyboard appear on my iOS simulator. For some reason it just won't show.
I keep getting this error as I select the TextField
Can't find keyplane that supports type 5 for keyboard iPhone-PortraitTruffle-PhonePad; using
I have tried to enabling / disable Hardware->Keyboard->Connect Hardware Keyboard as some SO answers recommended.
EDIT
Previously, the Connect Hardware Keyboard was enabled, I was able to type on my mac keyboard, also the soft keyboard poped up. For some reason after I disable the Connect Hardware Keyboard option, I cannot type on my mac keyboard anymore.
Make sure iOS Simulator -> Hardware -> Keyboard -> Connect Hardware Keyboard is not checked if you aren't using a hardware keyboard.
Go to Simulator-> Hardware->Keyboard and uncheck Connect Hardware Keyboard. It will work
This problem seems to be there in many devices https://bugreport.apple.com/logon Post a bug.. Hope apple will fix this bug
I found a similar problem in this thread.
Though most of the answers trying to fix it with Connect Hardware Keyboard, one of them is referring to sizing the views.
Another good point was mentioned in this answer:
The emulator tries to find a numeric keypad on the mac, but this is not found (MacBook Pro, MacBook Air and "normal/small" keyboard do not have it). You can deselect the option Connect Hardware Keyboard or just ignore the error message, it will have no negative effect on application.
And one more solution:
iOS Simulator-> Hardware-> Keyboard -> iOS uses same layout as OS X
Hope this helps.
For me, this appears only to be a problem in the latest version of Xcode (and tools). The quickest and most robust solution I've found is to simply restart the Simulator.
I expect this is a bug and will be fixed in a later release.

iOS 6: Turn off keyboard shortcuts

Is there is any way to turn off keyboard shortcuts in iOS 6 for particular textfield/textview?
I want to turn off keyboard shortcut for my app only and not from 'Settings app' of iOS.
I started writing my own text editor to achieve it.
You could try turning off autocorrection for your text field or text view with its autocorrectionType property—if the shortcut functionality is included in that (which seems likely), then it should get disabled as well. I’m pretty sure there’s no way to control the shortcut system itself; you might consider filing an enhancement request for it.
There is no standard way to turn off keyboard shortcuts on application level (For non jailbroken iOS).
To achieve this I stated with implementation of custom TextView with Core Text and UITextInput protocol.
Add #property for keyBoardShortCuts,
Override "tokenizer" getter method by following way to turn off shortcuts.
- (id <UITextInputTokenizer>)tokenizer {
if(self.keyBoardShortCuts)
return _tokenizer;
else
return nil;
}
If we remove tokenizer, there is be no keyboard shortcuts in custom view, even though shortcut are turned on from iOS setting.
Note: Take care of one thing, as we are not depending on tokenizer, now, in this case, use enumerateSubstringsInRange:range options:NSStringEnumerationByWords/Lines block to find out selection range for word or line.
To try this add above code in EGOTextView project to turn off default shortcuts.
From what I know, if you iphone is not jailbroken then you cannot turn it off for particular apps. It is more like a "master setting" that if changed, change applies to everything within iOS.
If it jailbroken, i know there are utility apps you can download that allow you to tweak the OS in that fashion...
Settings > General > Shortcuts. There are ready-made ones and any that you may have set up. They apply across all your iOS devices including your desktop Mac.

What causes some icons not to appear when I run my iPhone web app in Safari on the desktop?

NOTE: I have rephrased the title because I'm not getting any answers. Surely someone out there has experienced this problem and knows what to do. Thank you!
I have an iPhone web app that works almost perfectly in Safari on the desktop. Only two things do not work correctly on the desktop:
Radio buttons do not appear. They are operational because you can check one if you know where it is; it simply is invisible.
When SELECT is used, the little box with the default selection in it and the little down arrow do not appear. However, the actual text of the default selection DOES appear. If I click on that text the drop-down menu appears as it should.
In both cases the problem seems to have to do with icons missing or not rendered as needed.
What is the problem and how can I correct it?
Thank you.
Dave
Have you tried changing your user agent to Mobile Safari? If you turn on the Develop menu in Safari advanced prefs, you can then test the app in different environments. It's just a thought.