import {View} from 'react-native' import {msg, Trans} from '@lingui/macro' import {useLingui} from '@lingui/react' import {useProfileQuery} from '#/state/queries/profile' import {useSession} from '#/state/session' import {useWizardState} from '#/screens/StarterPack/Wizard/State' import {atoms as a, useTheme} from '#/alf' import * as TextField from '#/components/forms/TextField' import {StarterPack} from '#/components/icons/StarterPack' import {ScreenTransition} from '#/components/StarterPack/Wizard/ScreenTransition' import {Text} from '#/components/Typography' export function StepDetails() { const {_} = useLingui() const t = useTheme() const [state, dispatch] = useWizardState() const {currentAccount} = useSession() const {data: currentProfile} = useProfileQuery({ did: currentAccount?.did, staleTime: 300, }) return ( Invites, but personal Invite your friends to follow your favorite feeds and people What do you want to call your starter pack? dispatch({type: 'SetName', name: text})} /> {state.name?.length ?? 0}/50 Tell us a little more dispatch({type: 'SetDescription', description: text}) } multiline style={{minHeight: 150}} /> ) }