TabbedPage doesn't show the tabs
I've tried this static tabs example: source <TabbedPage.Children> <ContentPage Title="Tab 1"> <StackLayout Orientation="Vertical" Padding="10,0"> <Label Text="This is the content...
View ArticleSlow initial startup. What to do?
Hi everyone, I build an app which main Page is a TabbedPage which contains 6 - 7 "Sub"Pages. Every "Sub"Page is a ContentPage besides of two which are a CarouselPage and a MasterDetailPage. My problem...
View ArticleReading File From PCL
Hi, I am using PCL's and I want to read a json file from the shared project. This is my code String json = ""; using (StreamReader sr = new StreamReader("data.json")) { json = sr.ReadToEnd(); } but it...
View ArticleMasterDetailPage does not use all space when HorizontalOptions =...
Hi, I have a simple MasterDetailPage: public class ArticlesPage : MasterDetailPage { private readonly IViewLocator _viewLocator; public ArticlesPage(IViewLocator viewLocator) { _viewLocator =...
View ArticleXAML Relative Layout YConstraint equal to the height plus the Y of sibling
Is there a way to make an element's YConstraint in a Relative Layout be equal to the height plus the Y of it's last sibling? Right now i'm doing: RelativeLayout.YConstraint="{ConstraintExpression...
View ArticleXamarin Forms subpage navigation
I'm trying to make a main page link to and slide in sub pages. Is there a way to have a header that swaps out the page (sort of like tabs)?
View ArticleSetting Title on Xaml ContentPage not working
I've created a very simple Xaml ContentPage and got an MVVM scenario working all fine, but when I set the Title on the Main ContentPage element it isn't showing any title at all, its just shows the...
View ArticleLabel LineBreakMode Bug ?
Label LineBreakMode is not working on iOS (works on Android) On iOs all the text is presented and is not trailed. var resumeLabel = new Label { HorizontalOptions = LayoutOptions.StartAndExpand,...
View ArticleXamarinForms ScreenOrientation
Hi, I need to force some pages in the shared project to landscape, how can i do that? Can i do it within Xamarin forms or i have to create a native activity and load the Forms page from there? Thanks...
View ArticleHow can I get the display size, in order to position some things appropriately?
Based on my previous question about positioning a background image, I thought that a possible solution might be to set the width to the display size, and calculate the height of the image from that....
View ArticleAOT Issue when upgrade Xamarin.Forms NuGet package to version 1.2.2
Hi guys, I have installed latest Xamarin.Android, Xamarin.iOS, Xamarin Studio from your stable channel inside Xamarin Studio (on Mac and Windows) and from Visual Studio (only on Windows). I...
View ArticleComplex UI - Android Performance
Hi (again), I am creating a sort-of complex design for a list. For i cannot use listview I am using stackpanel with viewcontents binded to my list of objects. (See screenshot attached). I am a bit...
View ArticleIs there a RadioButton?
And if not, what would be the simplest way for me to implement them myself? A vertical StackLayout with an Image and a Label? I'm talking about Xamarin.Forms here, planning to use it cross platform.
View ArticleLooking suggestions for Xamarin coding standards and Xamarin.Froms styling...
Good day, I'm the process of creating a coding and styling guide for other developers within my company on using Xamarin and Xamarin.Forms for iOS and Android apps. Right now I'm just trying to locate...
View ArticleCarouselPage : MultiPage, TabbedPage : MultiPage
Hi, I just wanted to switch one layout form TabbedPage to CarouselPage. Since I have some generic custom code operating on instances of type MultiPage<Page> I quickly realized that CarouselPage...
View ArticleSignaturePad in Xamarin.Forms taking all the space
I have created a renderer for the SignaturePad (I called it SignaturePanel to avoid confusing myself with namespaces) to use it in my Xamarin.Forms project. It seems to be working, except that when it...
View ArticlePinch-Zoom Scrollview Renderer for Android
I have been able to implement pinch-zoom on iOS (see code below). However, I have not been able to find a way to render the ScrollViewRenderer with the same results. I have found the Android touch...
View ArticleIs it possible to retain a picture's metadata after resizing the image and...
Hello, I am using the MediaPicker.TakePhoto() method to capture a picture from the user's device, then I am resizing the picture and saving within the app's local storage. What I would like to do is to...
View ArticleMap and List onn a tabbed page
When the data its loaded I get the list and the map together.
View Article