[Chat] Split view layout for web (#10258)

This commit is contained in:
Samuel Newman
2026-05-15 20:46:53 +01:00
committed by GitHub
parent 5b7bc56a12
commit 0eb382da03
35 changed files with 849 additions and 588 deletions
+5 -5
View File
@@ -1,13 +1,13 @@
import {View} from 'react-native'
import {useWebMediaQueries} from '#/lib/hooks/useWebMediaQueries'
import {useBreakpoints} from '#/alf'
import {FABInner, type FABProps} from './FABInner'
export const FAB = (_opts: FABProps) => {
const {isDesktop} = useWebMediaQueries()
export const FAB = (props: FABProps) => {
const {gtMobile} = useBreakpoints()
if (!isDesktop) {
return <FABInner {..._opts} />
if (!gtMobile) {
return <FABInner {...props} />
}
return <View />