is it possible one app contains multiple type of widgets?

is it possible one app contains multiple type of widgets?
Hi,
you can create widget bundle.

Code Block swift
@main
struct AAWidgetBundle: WidgetBundle {
    @WidgetBundleBuilder
    var body: some Widget {
        AAWidget()
        AADifferentWidget()
    }
}


is it possible one app contains multiple type of widgets?
 
 
Q