Iphone Text Display Issue - iphone

I have a very simplified version a website that just displays text for users to view and sort through. However some of the text is randomly not displaying on an iphone. What is even more odd is that if I long press on the cell on an iphone it pops up with the number to try and complete a call.... Any ideas what is going on? It's fine on a web browser and fine on android.
Pictures attached for examples of errors. The url is http://jacobyfeed.com/mobile/ft-worth-steer-weight-breaks.html

Related

Full page view - Issues with Auto-fill code - Flutter

In my flutter app, I'm implementing a full page view using -
SystemChrome.setEnabledSystemUIMode(SystemUiMode.immersiveSticky);
Now, It works just fine until I reach a page in the app that uses PinCodeTextField. In that page, a user can input the received OTP.
Now, the issue is that as soon as the page is opened, "Auto-fill code from Messages" appears and it brings back the notification bar as well as the bottom menu bar.
I have not implemented this feature and looks like somehow It has come on its own. Though, it is a nice feature to have, I really don't want it to mess up my app's full page view. Not until I restart the app, it goes back to full page view but again whenever I reach to a page with PinCodeTextField, that popup appears and messes things up.
Now, how do I force my app to go back to full page view ? If that is not possible, how do I stop Auto-fill code to keep coming on my screen on such pages ?? Kindly help.

Google actions table card output flashes and disappears in Nest Hub

I see an issue while displaying a table card output in Nest hub, this used to work before. The table results appear for a second and then disappears forever. All other devices like google assistant in phone, simulator displays all seem to show the results as expected.
Not sure if something is broken after some automatic firmware upgrade, this is my firmware version 1.56.265669.
Is anyone facing this problem ?
Mine with similar firmware updated but never seen the new UI icon when swipe up from bottom. Guess this new feature is still under testing before launch to other countries region

How to Make Links Work in WKWebView and how to correctly format words

I am coding a simple app in Xcode and I have ran into a problem. I can not get links to work on the mobile app that go to other links. For example, if I click on the Twitter button at the bottom of the webpage nothing happens, I want that button to lead to the desired link it was supposed to go to. Also, the words in a page on the site are lined up in a vertical column, and I would like to know how to make the text look better in terms on formatting it correctly. Here is a picturePicture Of Simulator The Code
[Image]
Seems like you're adding your WKWebView the right way and the page is loading fine. The problem with the text is actually coming from the CSS of the site as I have the problem in Safari on my phone as well, so if you are the web admin of the site I'd fix it there.
Did you try if the button you are talking about is responsive when accessing through Safari on your phone/simulator? WKWebView does not have a loading bar and it seems "unresponsive" sometimes even though the sites are loading in the back.
When adding your WebView implementation buttons like the privacy policy on the site work fine for me.

Cordova: In app browser issue on iPhone - black bar grows

I am working on iPhone app using Phonegap.
I have used in app browser functionality in my app. Though it works fine but gives following issue.
I have used.
window.open('http://www.yahoo.com','_blank','location=yes');
Issue is:
when I click to open webpage in app browser with Done at the bottom, it opens the webpage successfully, when I click Done and go back a black bar appears at the bottom of the screen that grows each time I use in app browser.
How to fix this issue?

Link Target in iPhone Based web app

I am building a web application that is to be run by adding the app to the home screen. Currently it has a list of users, clicking on a user takes you to a detail screen for that user and on that screen is a notes link to take the user to another screen with a grid of notes and a text box to add more notes.
When any links are clicked/tapped, the link is opened in Safari, not the current full screen Safari instance. I tried setting the target of the link to _self, but this had no effect.
Any ideas?
I learned a full screen iPhone webapp can only be a single web page. Any link you try to open will launch Safari instead of replacing the current page. To combat this, I used asp.net postbacks with panels to hide/load/show requested data.
I use target="_webapp" and it works just use for example <a href="http://your.link" target="_webapp"> and it gonna open the link without exit landscape (full screen) i dont know why but with some of my webapps works and sometimes dont.