实战需求
SwiftUI中创建像单元格一样对齐的文本单元格
本文价值与收获
看完本文后,您将能够作出下面的界面
截屏2020-11-28 上午8.13.24.png
截屏2020-11-28 上午8.13.18.png
看完本文您将掌握的技能
- VStack
- HStack
- lastTextBaseline
- center
基础知识
lastTextBaseline
在视图中标记最底部文本基线的指南。
static let lastTextBaseline: VerticalAlignment
其他对齐方式
static let bottom: VerticalAlignment
标记视图底部边缘的指南。static let center: VerticalAlignment
标记视图垂直中心的指南。static let firstTextBaseline: VerticalAlignment
标记最上方文本基线视图的指南。static let top: VerticalAlignment
标记视图顶部边缘的指南。