aa96bba066
what are you doing there? go away fix recognizer to clear selected text on tap remove jank/hacks update readme remove android stuff (?) don't remove clipped subview on android for selection enable selection of alt text add numberOfLines properly apply container styles handle both selection and expand press events in alt text far better implementation revert link changes revert lightbox changes for now fix file name
22 lines
690 B
Ruby
22 lines
690 B
Ruby
Pod::Spec.new do |s|
|
|
s.name = 'ExpoUITextView'
|
|
s.version = '1.0.0'
|
|
s.summary = 'Drop in replacement for RN Text that uses UITextView'
|
|
s.description = 'Drop in replacement for RN Text that uses UITextView'
|
|
s.author = ''
|
|
s.homepage = 'https://github.com/bluesky-social/social-app/modules/expo-selectable-text'
|
|
s.platform = :ios, '13.0'
|
|
s.source = { git: '' }
|
|
s.static_framework = true
|
|
|
|
s.dependency 'ExpoModulesCore'
|
|
|
|
# Swift/Objective-C compatibility
|
|
s.pod_target_xcconfig = {
|
|
'DEFINES_MODULE' => 'YES',
|
|
'SWIFT_COMPILATION_MODE' => 'wholemodule'
|
|
}
|
|
|
|
s.source_files = "**/*.{h,m,mm,swift,hpp,cpp}"
|
|
end
|