The question in general is about (or it's possible ?) to use any snippet or plugin to target iphone 10 ?
My app works well for any iphone except iphone 10.
I'm looking any way to use custom css for this device. Sorry, no code attached,as my question is very general.
Thanks for any ideas.
You can take a look at this post on the NativeScript forum. The topic is more about screensizes but should help with your problem. The linked plugin allows you to write platform (and for iOS phone) specific css.
If you decide to use the plugin: make sure you read everything about the plugin, there are some tricky situations that can occur.
Related
Is it possible to write a mobile app using .NET 6 but still maintain platform specific implementation of UI
So this would involve still using UIViewControllers for iOS and Activities for Android without taking the MAUI approach of writing the UI in a cross platform manner.
If this is possible could you point us at some documentation around how this is achieved.
I haven't tried to follow the instructions yet but the links provided by #Paramjit in the comments to my original question seem to provide the answer I was looking for, namely that MAUI isn' the only mobile option in .NET 6:
https://www.andreasnesheim.no/converting-xamarin-android-template-to-net-6/
https://www.andreasnesheim.no/converting-xamarin-ios-template-to-net-6/
An iPad application is already developed, which has to support iPhone version as well now. According to apple standards, we have to use size classes in order to achieve that. But I am confused how to manage the universal storyboard with version control(SVN), when working with a team. Different people has to work on the same storyboard. Can anyone give best approach to handle this case?
I am developing a multi-platform app with Xamarin Forms. I need to support Touch ID/fingerprint authentication for both the iOS and Android platforms. How can I do this? I am new to Xamarin.
I've developed a Plugin for this. It's available on NuGet, too. Feel free, to drop an issue, if you miss something, or found an error.
https://github.com/smstuebe/xamarin-fingerprint
In general: There are alot of Plugins that abstract platform specific behavior. Before you write something on your own, just google for "<feature> xamarin plugin". It will safe much time.
You will need to use a Dependency Service for platform-specific behavior. Look to the linked guide as a starting point.
Is it possible to disable builds for Windows Phone in Phonegap Build?
Let me know if it's possible, Thanks!
#Renesansz,
This item is poorly documented, but you need to add a line to your config.xml.
Here is your documentation:
The Basics
Here is a working example:
Phonegap--Generic-Boilerplate
The Blog on the boilerplate is here:
Three (3) Phonegap Build Boilerplates for For Android and iOS
You will want to read the bold points in this FAQ
Top Mistakes by Developers new to Cordova/Phonegap
Best of Luck,
Jesse
I want to make an app in which i would want to make a chat module and i want to add sending videos in that application, How ever i want to use appcelerator to build this mobile app as it might take considerably less amount of time , but i dont know if appcelerator supports such complex works
can some one please tell me if this is possible in titanium , some other modules inclde ,
android caleneder ,
complex ui
thanks in advance
Well... chat is not supported in Appcelerator - not because it's not possible, but because it's not a native UI control. Appcelerator allows you to write apps using javascript that translates to NATIVE controls being displayed on the screen.
Appcelerator also allows you to write your own custom modules per platform (http://www.appcelerator.com/blog/2011/10/module-development-guide-reference-module-for-ios-and-android/) wither in java or objective-c.
If you want a chat - you can build one using native controls. Want to add pictures and video to it? up to you - you can.
Even in native java and obj-c you'd have to do it and there's no out-of-the-box solution.
Hope that answers your question.