Exemple #1
0
 public static RightSlideLayout AddScrollableContent(this RightSlideLayout content, View view)
 {
     content.MainContent.Children.Add(new ScrollView()
     {
         Content = view
     });
     return(content);
 }
Exemple #2
0
 public static RightSlideLayout AddContent(this RightSlideLayout content, View view)
 {
     content.MainContent.Children.Add(view);
     return(content);
 }