diff --git a/src/view/screens/Notifications.tsx b/src/view/screens/Notifications.tsx index 03f0a8f6..48c834a2 100644 --- a/src/view/screens/Notifications.tsx +++ b/src/view/screens/Notifications.tsx @@ -29,6 +29,9 @@ import {listenSoftReset, emitSoftReset} from '#/state/events' import {truncateAndInvalidate} from '#/state/queries/util' import {useNonReactiveCallback} from '#/lib/hooks/useNonReactiveCallback' import {isNative} from '#/platform/detection' +import {FAB} from '../com/util/fab/FAB' +import {ComposeIcon2} from 'lib/icons' +import {useComposerControls} from '#/state/shell/composer' type Props = NativeStackScreenProps< NotificationsTabNavigatorParams, @@ -47,6 +50,7 @@ export function NotificationsScreen({}: Props) { const unreadApi = useUnreadNotificationsApi() const hasNew = !!unreadNotifs const isScreenFocused = useIsFocused() + const {openComposer} = useComposerControls() // event handlers // = @@ -156,6 +160,14 @@ export function NotificationsScreen({}: Props) { showIndicator={hasNew} /> )} + openComposer({})} + icon={} + accessibilityRole="button" + accessibilityLabel={_(msg`New post`)} + accessibilityHint="" + /> ) }