diff options
| author | Ivan Chen <ivan@tagg.id> | 2021-06-10 19:20:19 -0400 |
|---|---|---|
| committer | Ivan Chen <ivan@tagg.id> | 2021-06-10 19:20:19 -0400 |
| commit | 2f9ecfb9bc89c7c6e7ac09952b97d3f3813075bc (patch) | |
| tree | 352386ad82382a506b49232473bdab820e6fe4ff /src/components/moments/IndividualMomentTitleBar.tsx | |
| parent | 770dcf385fa99fbb93c4ae89a51b09fd96d23bf9 (diff) | |
Add logic for keyboard focus
Diffstat (limited to 'src/components/moments/IndividualMomentTitleBar.tsx')
| -rw-r--r-- | src/components/moments/IndividualMomentTitleBar.tsx | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/src/components/moments/IndividualMomentTitleBar.tsx b/src/components/moments/IndividualMomentTitleBar.tsx index 2bebafa7..4ae9471f 100644 --- a/src/components/moments/IndividualMomentTitleBar.tsx +++ b/src/components/moments/IndividualMomentTitleBar.tsx @@ -1,8 +1,13 @@ import React from 'react'; -import {TouchableOpacity} from 'react-native'; -import {Text, View, StyleSheet, ViewProps} from 'react-native'; -import {normalize} from '../../utils'; +import { + StyleSheet, + Text, + TouchableOpacity, + View, + ViewProps, +} from 'react-native'; import CloseIcon from '../../assets/ionicons/close-outline.svg'; +import {normalize} from '../../utils'; interface IndividualMomentTitleBarProps extends ViewProps { title: string; |
