All Questions
17 questions
0
votes
1
answer
55
views
.NET MAUI iOS Release Build Requires Developer Mode to be Enabled on Physical Device
I have developed a .NET MAUI iOS application and successfully created an .ipa file using a Distribution certificate and provisioning profile. However, when attempting to install the app on a physical ...
0
votes
0
answers
19
views
Xamarin Forms android application cannot reach the backend on devices running Android OS 13 or earlier after migrating backend to Cloudflare
I know, I know, dinosaur tech. But I have been tasked to figure this out. Any help would receive my eternal gratitude...
Over the weekend, my company migrated our server security to Cloudflare. ...
1
vote
0
answers
41
views
What code would I use to turn phone completely off at the end of timer?
Main Concise Question: What code would you use to turn the phone completely off? What would that code look like?
Question explanation: I am trying to build a simple cross platform mobile app in ...
0
votes
0
answers
254
views
xamarin master page bind content page
I'm using xamarin cross-platform.
I want to add same the "floating menu item" in the every .xaml page.(home/logout/view/ account)
I have added below master page.
<MasterDetailPage xmlns="http://...
0
votes
1
answer
1k
views
Mobile Cross-Platform Camera Frames Extraction
Is there any cross-platform framework for mobile apps (Xamarin, Flutter, React-Native, etc.) that allows accessing frames from the camera's feed live?
In other words, is there any way to perform ...
0
votes
0
answers
44
views
Xamarin - TabbedPage in CarousalPage
We are developing a social media platform. We are using CarousalPage but i need a tabbedpage in home page. When i m trying to do that it gives runtime error and it says carousalpage only takes ...
0
votes
2
answers
593
views
Xamarin: How to Capture Image DATA (not only for display) on portable app
I need to capture an image from my camera using xamarin.forms portable, and obtain access to the image byte[] data for image processing purposes.
How can this be done?
I have the working code that ...
0
votes
1
answer
51
views
How to get going with Xamarin without compiling anything for iOS?
I am using Visual Studio 2015. I am trying to follow the basic tutorial of Xamarin from here
https://developer.xamarin.com/guides/xamarin-forms/getting-started/hello-xamarin-forms/quickstart/
When I ...
-2
votes
1
answer
56
views
Do I have to write separate UI code for every different os?
i am new to xamarin.
1) I wonder if it's possible in xamarin to write single ui code that can be used in all platforms - android, ios, windows. Or do i have to write separete ui code for every ...
2
votes
1
answer
6k
views
How to remove Splash screen for both iOS and Android in Xamarin.Forms?
I'm new to Xamarin.Forms and was looking for a way to remove the Splash Screen and have my custom animated splash screen, does anyone have the idea about how to do it? Any help at all would be great!
...
1
vote
3
answers
262
views
What is a cross platform solution to keep my mobile app updated from a database?
Alrighty I have a cross platform mobile app built using xamarin and the mvvmcross framework. Part of the app is grabbing some data from a remote database. This data will be updated/deleted/created ...
0
votes
1
answer
38
views
Custom Xamarin Cell Issue
I'm learning to use Xamarin, and was making a simple custom cell. However, when I run the app none of the information I set as the ListViews ItemsSource displays. I was wondering if there was an ...
2
votes
1
answer
3k
views
Xamarin forms: The equivalent of .Finish()
I have a Xamarin Forms application which very well on all three platforms. The app has a login screen and other pages that are available one a user has successfully logged in. My question is: In ...
3
votes
2
answers
10k
views
How to animate opacity in Xamarin.Forms
I wonder how to Animate opacity of elements visible on screen. For example for Entry I got to this:
this.Animate("", d =>
{
Debug.WriteLine("anim:" + d);
Username.Opacity = (AnimationTime - ...
5
votes
2
answers
6k
views
Xamarin.Forms DatePicker Time
I'm using the Xamarin Forms Date Picker and it is working fine. But the picker only displays Month, Day and Year. I need to also add the ability for the user to set a time. Is there any built in way ...