Home > Enterprise >  What is this view in SwiftUI called?
What is this view in SwiftUI called?

Time:11-02

Can anyone tell me what this sort of expandable toolbar, containing sliders, is called? I'm still a beginner in development and can't seem to find this views name, or any place where to learn it.

Thanks

CodePudding user response:

It is a modal/half sheet/popover not available in SwiftUI as a pre-built View.

You can add the sliders, tab view and segmented picker per your requirements to the modal.

There are many way to implement it.

in iOS 15 Apple has provided adaptiveSheetPresentationController so it can be implemented using UIKit.

enter image description here

The setup is pretty straight forward, for example you can use something like:

.partialSheet(isPresented: $isSheetShown) {
    //Add the SwiftUI view that you want to appear in the partial sheet.
}

Read the How to Use

  • Related