-
-
Notifications
You must be signed in to change notification settings - Fork 239
Open
Description
Using the following code causes alignment problems with the ios.position="left"
<ActionBarExtension>
<ActionItem icon="res://hamburger-icon" ios.position="left" (tap)="toggleDrawer()"></ActionItem>
</ActionBarExtension>Output
The only way the remove the extra space is by use the ActionBar directly
<ActionBar>
<ActionItem icon="res://hamburger-icon" ios.position="left" (tap)="toggleDrawer()"></ActionItem>
</ActionBar>Output
Packages
├── @angular/[email protected]
├── @angular/[email protected]
├── @angular/[email protected]
├── @angular/[email protected]
├── @angular/[email protected]
├── @angular/[email protected]
├── @angular/[email protected]
├── @angular/[email protected]
─┬ [email protected]
│ ├── [email protected]
│ ├── [email protected]
│ ├── [email protected]
│ ├── [email protected]
│ └── [email protected]
jdnichollsc and leocaseiro

