Tutorial by Examples

public class MyPage : ContentPage { RelativeLayout _layout; Label MiddleText; public MyPage() { _layout = new RelativeLayout(); MiddleText = new Label { Text = "Middle Text" }; MiddleText.SizeChanged += ...
public class MyPage : ContentPage { RelativeLayout _layout; BoxView centerBox; BoxView rightBox; BoxView leftBox; BoxView topBox; BoxView bottomBox; const int spacing = 10; const int boxSize = 50; public MyPage() { _layout = new Rel...

Page 1 of 1