Complete rename across all bundle IDs, App Groups, CloudKit containers, StoreKit product IDs, data store filenames, URL schemes, logger subsystems, Swift identifiers, user-facing strings (7 languages), file names, directory names, Xcode project, schemes, assets, and documentation. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
17 lines
277 B
Swift
17 lines
277 B
Swift
//
|
|
// View+Extensions.swift
|
|
// Reflect
|
|
//
|
|
// Created by Trey Tartt on 7/7/22.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
extension View {
|
|
func hasScrollEnabled(_ value: Bool) -> some View {
|
|
self.onAppear {
|
|
UITableView.appearance().isScrollEnabled = value
|
|
}
|
|
}
|
|
}
|