Lines Matching refs:width
113 Text('space').width('90%')
115 Column().width('100%').height(30).backgroundColor(0xAFEEEE)
116 Column().width('100%').height(30).backgroundColor(0x00FFFF)
117 }.width('90%').height(100).border({ width: 1 })
120 Text('alignItems(Start)').width('90%')
122 Column().width('50%').height(30).backgroundColor(0xAFEEEE)
123 Column().width('50%').height(30).backgroundColor(0x00FFFF)
124 }.alignItems(HorizontalAlign.Start).width('90%').border({ width: 1 })
126 Text('alignItems(End)').width('90%')
128 Column().width('50%').height(30).backgroundColor(0xAFEEEE)
129 Column().width('50%').height(30).backgroundColor(0x00FFFF)
130 }.alignItems(HorizontalAlign.End).width('90%').border({ width: 1 })
132 Text('alignItems(Center)').width('90%')
134 Column().width('50%').height(30).backgroundColor(0xAFEEEE)
135 Column().width('50%').height(30).backgroundColor(0x00FFFF)
136 }.alignItems(HorizontalAlign.Center).width('90%').border({ width: 1 })
139 Text('justifyContent(Center)').width('90%')
141 Column().width('90%').height(30).backgroundColor(0xAFEEEE)
142 Column().width('90%').height(30).backgroundColor(0x00FFFF)
143 }.height(100).border({ width: 1 }).justifyContent(FlexAlign.Center)
145 Text('justifyContent(End)').width('90%')
147 Column().width('90%').height(30).backgroundColor(0xAFEEEE)
148 Column().width('90%').height(30).backgroundColor(0x00FFFF)
149 }.height(100).border({ width: 1 }).justifyContent(FlexAlign.End)
150 }.width('100%').padding({ top: 5 })