Anjani Barnwal
Anjani Barnwal

Reputation: 1522

How can i create a toggle button with left and right text in ionic?

I want to create screen like this, the text is in left and right and toggle button is in center.

enter image description here

Upvotes: 0

Views: 1030

Answers (1)

ppichier
ppichier

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

Related Questions