Bluesky app fork with some witchin' additions 馃挮
at post-text-option 13 lines 326 B view raw
1import ExpoModulesCore 2 3public class ExpoScrollForwarderModule: Module { 4 public func definition() -> ModuleDefinition { 5 Name("ExpoScrollForwarder") 6 7 View(ExpoScrollForwarderView.self) { 8 Prop("scrollViewTag") { (view: ExpoScrollForwarderView, prop: Int) in 9 view.scrollViewTag = prop 10 } 11 } 12 } 13}