I'm developing a mobile app in Xamarin.Android using MvvmCross. In my app, I have added a button which should open a dialog fragment window when clicked. I went through the available tutorials but could not find proper solution. Has anyone tried implementing it ?
Related
I am using an online builder for my app(ApperyDotIo, JQM framework). My application works fine with one exception. I have an in-app link to my website. The link in the iOS app, the link takes me to the page but since the iPhone doesn't have a "back" button I can't go back to the app. Looks like you have to close the app and then reopen it to get back into the app.
I tried to set the link to not open in the same window and vice versa.
Any easy work around?
Links and back buttons in Android apps work fine.
Thank you
You can consider using the inAppBrowser: https://docs.appery.io/docs/cordova-jquerymobile-inappbrowser
It will allow you to open the website in the child window of the application (with the "close" button) or in the native browser, without opening the website as application page.
when I click the red box in android, the FlyoutHeader closes, but in ios it clicks on the item instead of just closing. What I can do?
Xamarin Forms Version 4.6.0.800
It is not master-detalpage is this: https://learn.microsoft.com/en-us/xamarin/xamarin-forms/app-fundamentals/shell/flyout
thank you very much
android example Working good
ios example not working
red box
I have a problem with opening dialogs on Safari iOS 10.3.3 (Angular 5.2, Angular Material 5.2.4). I can open and close dialog multiple times but after several attempts dialog doesn't show up (dialog is visible in the DOM but is not shown to the user). When I trigger any style recalculation in dev tools dialog shows up. Switching browser tab and switching it back also helps.
My problem is related to issue https://github.com/angular/material2/issues/10530.
Do you have any workaround or idea how can fix it before Angular Material team will solve this?
I'm building an iOS app using cordova that basically opens news links to external sites. However iFrames don't seem to want to play nice on iOS. Is it possible to use UIWebView much like an iframe? I want to just embed a box on my app page so I can keep my apps header navigation and such. Instead right now opening links just pops the page up over everything.
I have a PhoneGap application in iOS to display a web app. I want to modify the browser control that is displaying the web app to have a few buttons at the bottom that function as "back" "forward" "refresh" etc. is this possible? Do I need to use a plugin?
I suggest using html to implement those buttons, which is pretty easy with javascript. Since it's not performance-critical, doing this with native code is unnecessary.
I don't know any plugins for what exactly you want, but I have used the android version of this iOS ChildBrowser plugin which provides a pop-up browser with "back", "forward" and "refresh" buttons. It's quite convenient for browsing external web pages.