angularjs - how to add toggle button in ionic -


i trying add toggle button button bar (right side) show in image![enter image description here][1]

i able make button bar , added toggle button link http://ionicframework.com/docs/api/directive/iontoggle/

but toggle button come below button bar .i need should come along button bar show in image here code

  <div class="" id="buttontab" style="border-bottom: 1px solid lightgray">     <div class="button-bar">              </div>             <div> <ion-toggle ng-model="airplanemode" toggle-class="toggle-calm">show attachment</ion-toggle>            </div>          </div>         </div> 

the simplest solution put button (ion-toggle element) inside .button-bar , float right.

see in action here, position: absolute; , right: 0;:

http://plnkr.co/edit/yvswwgnzeiow0lpvm04i?p=preview


Comments