You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-[Shake Gesture](https://github.com/slackhq/SlackTextViewController#shake-gesture) for clearing text view
35
34
- Multimedia Pasting (png, gif, mov, etc.)
36
35
-[Inverted Mode](https://github.com/slackhq/SlackTextViewController#inverted-mode) for displaying cells upside-down (using CATransform) -- a necessary hack for some messaging apps. `YES` by default, so beware, your entire cells might be flipped!
36
+
- Tap Gesture for dismissing the keyboard
37
+
-[Panning Gesture](https://github.com/slackhq/SlackTextViewController#panning-gesture) for sliding down/up the keyboard
38
+
-[Dynamic Type](https://github.com/slackhq/SlackTextViewController#dynamic-type) for adjusting automatically the text input bar height based on the font size.
37
39
- Bouncy Animations
38
40
39
41
### Compatibility
42
+
- Carthage & Cocoapods
40
43
- Swift: [A sample project is available in a different branch] (https://github.com/slackhq/SlackTextViewController/tree/swift-example)
@@ -241,7 +245,7 @@ You can also dismiss it by calling `[self.typingIndicatorView dismissIndicator];
241
245
242
246
###Panning Gesture
243
247
244
-
Dismissing the keyboard with a panning gesture is enabled by default with the `keyboardPanningEnabled` property. You can always disable it if you'd like.
248
+
Dismissing the keyboard with a panning gesture is enabled by default with the `keyboardPanningEnabled` property. You can always disable it if you'd like. You can extend the `verticalPanGesture` behaviors with the `UIGestureRecognizerDelegate` methods.
245
249
246
250
###Shake Gesture
247
251
@@ -301,6 +305,13 @@ or the `UICollectionView` version:
301
305
```
302
306
303
307
308
+
###Dynamic Type
309
+
310
+
Dynamic Type is enabled by default with the `keyboardPanningEnabled` property. You can always disable it if you'd like.
0 commit comments