What is the iOS equivalent of the android three dot menu icon?

Viewed 12376

Android uses three dots (pictured) to show that there are more menu items available. What is the iOS equivalent of this icon?

Android three dots menu

enter image description here

6 Answers

It's : ellipsis

and you can use it like this :

Image(systemName: "ellipsis")

I myself use the "square.and.arrow.up" system icon as my equivalent. Though the Android icon isn't so terrible you could implement it yourself.

Additionally a bottom action sheet is a great equivalent for Android's Contextual Menu.


SwiftUI Implementation of action sheet

.actionSheet(isPresented: $showingActionSheet) {
    ActionSheet(title: Text("Change background"), message: Text("Select a new color"), buttons: [
        .default(Text("Red")) { self.backgroundColor = .red },
        .default(Text("Green")) { self.backgroundColor = .green },
        .default(Text("Blue")) { self.backgroundColor = .blue },
        .cancel()
    ])
}
Related