Summary
Update the iOS Swift wrapper and documentation to establish the #if compilation condition pattern for guarding Swift entry points under @LocalFlag flags.
Pattern to document
// Entry point guarded by @LocalFlag new_checkout (defaultValue = false)
#if !DISABLE_NEW_CHECKOUT
NewCheckoutButton()
#endif
// Deeplink handler
#if !DISABLE_NEW_CHECKOUT
case .newCheckout: NewCheckoutCoordinator.start()
#endif
Acceptance criteria
Summary
Update the iOS Swift wrapper and documentation to establish the
#ifcompilation condition pattern for guarding Swift entry points under@LocalFlagflags.Pattern to document
Acceptance criteria
iosApp/Config/FeatureFlags.generated.xcconfig)