Ios swift – Remove padding / spacing between label and content in a disclosure group
I am creating a disclosure group as follows: DisclosureGroup(isExpanded: $isShowingAllOpeningHours) { Text("Content") .frame(maxWidth: .infinity, alignment: .leading) .background(.red) .padding(.bottom, .zero) } label: { Text("Title") .background(.green) .padding(.bottom, .zero) } .background(.yellow) I've added the colors just to illustrate the point This gives me…