12345678910111213 |
- <?xml version="1.0" encoding="utf-8"?>
- <UIView layout="flex:1,flexDirection:row,justifyContent:space-between,alignItems:center" attr="">
- <UILabel name="title" attr="font:PingFangSC-Regular|15,color:#4B7AEA,text:标题"/>
- <UIView layout=",position:relative,width:50,height:30" attr="">
- <UISwitch name="toggle" layout="position:absolute" attr="on:false"/>
- <UILabel name="toggleLabel" layout="position:absolute,left:-2,height:0,width:30,height:100%"
- attr="font:PingFangSC-Regular|12,color:#ffffff,text:是,textAlign:center"/>
- <UILabel name="toggleOffLabel" layout="position:absolute,right:-2,height:0,width:30,height:100%"
- attr="font:PingFangSC-Regular|12,color:#ffffff,text:否,textAlign:center"/>
- </UIView>
- </UIView>
|