TEAM LICENSES: Save money and learn new skills through a Hacking with Swift+ team license >>

Ultimate Portfolio App: Custom sorting for items - alternative approach

Forums > Articles

@cgaaf  

Just posting my alternative approach to the ActionSheet for the Ultimate Portfolio App: Custom sorting for items chapter. I'm accepting of any and all feedback about this approach.

Instead of using the ActionSheet I've opted to use a Menu view to select the sort order. It appears that Apple may be moving in this direction for the design of their own apps. Please refer to how Apple uses a Menu instead of an ActionSheet on the reminders app (Reminders app menu example).

This approach also means that you can use one fewer @State property and directly manage the sort order through a picker.

Here is my approach

@State private var sortOrder = Item.SortOrder.optimized

...

.toolbar {
    ToolbarItem(placement: .primaryAction) {
        if showClosedProjects == false {
            Button {
                withAnimation {
                    dataController.createProject()
                }
            } label: {
                Label("New Project", systemImage: "plus")
            }
        }
    }

    ToolbarItem(placement: .navigationBarLeading) {
        Menu {
            Picker(selection: $sortOrder, label: Text("Sort items")) {
                Text("Optimized").tag(Item.SortOrder.optimized)
                Text("Creation Date").tag(Item.SortOrder.creationDate)
                Text("Title").tag(Item.SortOrder.title)
            }
        } label: {
            Label("Sort", systemImage: "arrow.up.arrow.down")
        }
    }
}

5      

Hacking with Swift is sponsored by Superwall.

SPONSORED Superwall lets you build & test paywalls without shipping updates. Run experiments, offer sales, segment users, update locked features and more at the click of button. Best part? It's FREE for up to 250 conversions / mo and the Superwall team builds out 100% custom paywalls – free of charge.

Learn More

Sponsor Hacking with Swift and reach the world's largest Swift community!

Archived topic

This topic has been closed due to inactivity, so you can't reply. Please create a new topic if you need to.

All interactions here are governed by our code of conduct.

 
Unknown user

You are not logged in

Log in or create account
 

Link copied to your pasteboard.