diff --git a/dimensionhub/Views/DetailView.swift b/dimensionhub/Views/DetailView.swift index 091f71f..bc5678c 100644 --- a/dimensionhub/Views/DetailView.swift +++ b/dimensionhub/Views/DetailView.swift @@ -147,6 +147,22 @@ struct DetailView: View { } } + HStack() { + Button { + print("click me") + } label: { + Rectangle() + .frame(width: 180, height: 50) + .foregroundColor(Color.yellow) + .cornerRadius(10) + .overlay { + RoundedRectangle(cornerRadius: 10) + .stroke(Color.black, lineWidth: 1) + Text("展开全部剧集") + } + } + + } } .task { await detailModel.loadData(dramaId: 124)