Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork245
Open
Labels
Description
I'mfollowing the instructions for setting the position of an ActionItem in the ActionBar for iOS. But when I includeios.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" /> <ActionItem :text="signedIn ? 'Sign Out' : 'Sign In'" ios.position="right" @tap="signInOut" /> </ActionBar>
Any suggestions?