Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

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

iOS 26 followups (#9936)

authored by

Samuel Newman and committed by
GitHub
bc61314c 1850042c

+9 -9
-4
src/alf/atoms.ts
··· 10 10 export const atoms = { 11 11 ...baseAtoms, 12 12 13 - rounded_sheet: { 14 - borderRadius: 40, 15 - }, 16 - 17 13 h_full_vh: web({ 18 14 height: '100vh', 19 15 }),
+7 -1
src/view/com/composer/Composer.tsx
··· 1522 1522 <Animated.View 1523 1523 style={topBarAnimatedStyle} 1524 1524 layout={native(LinearTransition)}> 1525 - <View style={[a.flex_row, a.align_center, a.gap_xs, a.p_lg, a.pb_md]}> 1525 + <View 1526 + style={[ 1527 + a.flex_row, 1528 + a.align_center, 1529 + a.gap_xs, 1530 + IS_LIQUID_GLASS ? [a.px_lg, a.pb_md] : [a.p_sm], 1531 + ]}> 1526 1532 <Button 1527 1533 label={_(msg`Cancel`)} 1528 1534 variant="ghost"
+2 -4
src/view/shell/Composer.ios.tsx
··· 6 6 import {ComposePost, useComposerCancelRef} from '#/view/com/composer/Composer' 7 7 import {atoms as a, useTheme} from '#/alf' 8 8 import {SheetCompatProvider as TooltipSheetCompatProvider} from '#/components/Tooltip' 9 - import {IS_LIQUID_GLASS} from '#/env' 10 9 11 10 export function Composer({}: {winHeight: number}) { 12 11 const {setFullyExpandedCount} = useDialogStateControlContext() ··· 34 33 presentationStyle="pageSheet" 35 34 animationType="slide" 36 35 onRequestClose={() => ref.current?.onPressCancel()} 37 - backdropColor="transparent" 38 - style={[!IS_LIQUID_GLASS && a.rounded_sheet]}> 39 - <View style={[a.flex_1, a.curve_continuous, t.atoms.bg]}> 36 + backdropColor="transparent"> 37 + <View style={[a.flex_1, t.atoms.bg]}> 40 38 <TooltipSheetCompatProvider> 41 39 <ComposePost 42 40 cancelRef={ref}