- Visit fmhy.net/android-iosguide#ios-ipas for more sources.
- Sideloading Guide: https://rentry.co/sideloadingguide, https://ios.cfw.guide/sideloading-apps/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import SwiftUI | |
| struct ContentView: View { | |
| @StateObject private var viewModel = RectsViewModel() | |
| var body: some View { | |
| GeometryReader { geometry in | |
| TimelineView(.animation) { timeline in | |
| Canvas {context, size in | |
| let rects = viewModel.rects |
OlderNewer