I set the top right button #1 via designer. It is a refresh button and displays well. I set the top left button with :
B4X:
Dim btnleftlist As List
btnleftlist.Initialize
Dim btn As BarButton
btn.Initializetext(Chr(0xE7FD),"cancel")
btn.SetFont(Font.CreateMaterialIcons(22))
btn.TintColor=Colors.White
btnleftlist.Add(btn)
Page1.TopLeftButtons=btnleftlist
this places the left button at very top. The right button and left button is not at the same top value, one stays higher one stays lower. Is there any way to change left button position a bit ? I want to place a member profile button to left but can't do it like this.
I can't use a label or clasical button as a topleftbutton because it says :
-[UILabel _setOwningNavigationItem:]: unrecognized selector sent to instance 0x10582d520
and barbutton does not have an attributedtext feature so I can set it to CS.