Hi Friends.
Actually i want to Development a Tablet App in Xamarin.Forms
but i don´t have a idea which its the good way to devs this.
in Resume, all screens have a Transparent Box at center.
and in that box this all content. (in this image, a Form)
in other sreen the content have a form.
I'm very used to develop for mobile, and i don´t know which its the way to develop for a tablet.
only need some ideas
Thank you very much for any help
What is the problem you are trying to solve?
It sounds like you're not sure how to implement the transparency of the transparent box. Have you tried setting the Alpha value of its BackgroundColor
property?
var color = Color.White.MultiplyAlpha(0.6);
Otherwise, if your issue is with how to centre the box in the tablet's window, you need to set the HorizontalOptions
and VerticalOptions
properties on the transparent box.
You can make the transparent box itself using a StackLayout
.
Answers
What is the problem you are trying to solve?
It sounds like you're not sure how to implement the transparency of the transparent box. Have you tried setting the Alpha value of its
BackgroundColor
property?Otherwise, if your issue is with how to centre the box in the tablet's window, you need to set the
HorizontalOptions
andVerticalOptions
properties on the transparent box.You can make the transparent box itself using a
StackLayout
.