前一篇的文章分享給各位 Button 的使用,為了之後的導覽做準備,今天來談談「List」表單的使用~
今天的篇幅稍稍的短,還請大家見諒!
A container that presents rows of data arranged in a single column, optionally providing the ability to select one or more members.
List 官方文件
List {
Text("A List Item")
Text("A Second List Item")
Text("A Third List Item")
}
如果想將 List 之間的線刪除,可以用.listRowSeparator
並設定 hidden 如下:
.listRowSeparator(.hidden)
如要顯示則將 .hidden
改成 .visible
.listRowSeparatorTint(.red)
section
List{
Section(header:Text("SectionOne"),footer:Text("Footer")){
{
......
}
}
今天大概到這邊啦~謝謝大家的閱讀~