Cull unused files (#11029)
This commit is contained in:
@@ -1,33 +0,0 @@
|
||||
import {View} from 'react-native'
|
||||
import {KeyboardStickyView} from 'react-native-keyboard-controller'
|
||||
import {useSafeAreaInsets} from 'react-native-safe-area-context'
|
||||
|
||||
import {atoms as a, useTheme} from '#/alf'
|
||||
import {IS_WEB} from '#/env'
|
||||
|
||||
export function KeyboardAccessory({children}: {children: React.ReactNode}) {
|
||||
const t = useTheme()
|
||||
const {bottom} = useSafeAreaInsets()
|
||||
|
||||
const style = [
|
||||
a.flex_row,
|
||||
a.py_xs,
|
||||
a.pl_sm,
|
||||
a.pr_xl,
|
||||
a.align_center,
|
||||
a.border_t,
|
||||
t.atoms.border_contrast_medium,
|
||||
t.atoms.bg,
|
||||
]
|
||||
|
||||
// todo: when iPad support is added, it should also not use the KeyboardStickyView
|
||||
if (IS_WEB) {
|
||||
return <View style={style}>{children}</View>
|
||||
}
|
||||
|
||||
return (
|
||||
<KeyboardStickyView offset={{closed: -bottom}} style={style}>
|
||||
{children}
|
||||
</KeyboardStickyView>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user