Ios swift – Create a drop down list without impacting the HStack
I have tried to create a drop-down list, but the list doesn't look good and when opening, it keeps changing the size of the HStack ZStack { VStack() { HStack(spacing: 0) { HStack { Text(filters[selectedFilter].name) .foregroundColor(Color.black) .font(.system(size: 25)) Image(systemName: "chevron.right")…