Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

100vh settings screen (#4015)

authored by

Samuel Newman and committed by
GitHub
6b2635c8 03da0565

+14 -4
+1 -1
src/screens/Messages/Settings.tsx
··· 46 46 if (!gate('dms')) return <ClipClopGate /> 47 47 48 48 return ( 49 - <CenteredView sideBorders> 49 + <CenteredView sideBorders style={a.h_full_vh}> 50 50 <ViewHeader title={_(msg`Settings`)} showOnDesktop showBorder /> 51 51 <View style={[a.px_md, a.py_lg, a.gap_md]}> 52 52 <Text style={[a.text_xl, a.font_bold, a.px_sm]}>
+10 -1
src/view/com/util/Views.d.ts
··· 6 6 sideBorders, 7 7 ...props 8 8 }: React.PropsWithChildren< 9 - ViewProps & {sideBorders?: boolean; topBorder?: boolean} 9 + ViewProps & { 10 + /** 11 + * @platform web 12 + */ 13 + sideBorders?: boolean 14 + /** 15 + * @platform web 16 + */ 17 + topBorder?: boolean 18 + } 10 19 >)
+3 -2
src/view/com/util/Views.web.tsx
··· 20 20 View, 21 21 ViewProps, 22 22 } from 'react-native' 23 - import {addStyle} from 'lib/styles' 23 + import Animated from 'react-native-reanimated' 24 + 24 25 import {usePalette} from 'lib/hooks/usePalette' 25 26 import {useWebMediaQueries} from 'lib/hooks/useWebMediaQueries' 26 - import Animated from 'react-native-reanimated' 27 + import {addStyle} from 'lib/styles' 27 28 28 29 interface AddedProps { 29 30 desktopFixedHeight?: boolean | number