Reputation: 1522
I want to create screen like this, the text is in left and right and toggle button is in center.
Upvotes: 0
Views: 1030
Reputation: 1125
Maybe something like this, all elements are centered
<div style="display: flex; justify-content: center">
<div style="align-self: center">Binnen</div>
<ion-toggle></ion-toggle>
<div style="align-self: center">Buiten</div>
</div>
Upvotes: 3