Guest User

Untitled

a guest
Jul 19th, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. public override void ViewWillLayoutSubviews()
  2. {
  3. base.ViewWillLayoutSubviews();
  4.  
  5. if (TabBar != null)
  6. {
  7. foreach (var item in TabBar.Items)
  8. {
  9. item.ImageInsets = new UIEdgeInsets(5, 0, -5, 0);
  10. }
  11. }
  12. }
  13.  
  14. public MyTabbedPage()
  15. {
  16. On<Android>().SetToolbarPlacement(ToolbarPlacement.Bottom);
  17. }
Add Comment
Please, Sign In to add comment