0

The order of the widgets in the gallery seems to me arbitrary. Is there a way to arrange the WidgetExtensions in a certain order with Xcode or in Swift?

enter image description here

In my case I do have several targets where I have created different widgets.

pawello2222
  • 46,897
  • 22
  • 145
  • 209
MosTwanTedT
  • 323
  • 3
  • 12

1 Answers1

1

It looks like Widgets are displayed in the same order in which you put them in the WidgetBundle:

@main
struct TestWidgetBundle: WidgetBundle {
    var body: some Widget {
        FirstWidget() // will be displayed first...
        SecondWidget()
    }
}
pawello2222
  • 46,897
  • 22
  • 145
  • 209