Open
Description
I'm following the instructions for setting the position of an ActionItem in the ActionBar for iOS. But when I include ios.position="right"
in the ActionItem tag, the Android app crashes when I attempt to load that page. Here's the ActionBar code:
<ActionBar>
<NavigationButton visibility="collapsed" />
<Label text="My Classes" class="font-bold text-lg" />
<ActionItem :text="signedIn ? 'Sign Out' : 'Sign In'" ios.position="right" @tap="signInOut" />
</ActionBar>
Any suggestions?