Skip to content

Instantly share code, notes, and snippets.

@GabrielTargon
GabrielTargon / InfiniteiOSWidgets.swift
Created January 10, 2023 23:14
How to add infinite widgets on iOS
@main
struct WidgetBundle: WidgetBundle {
var body: some Widget {
MyWidgetOne()
MyWidgetTwo()
MyWidgetThree()
MyWidgetFour()
WidgetBundleTwo().body
}
}