# How we built the v0 iOS app

**Published:** November 24, 2025 | **Authors:** Fernando Rojo | **Category:** v0

---

We recently released [v0 for iOS](https://apps.apple.com/us/app/v0/id6745097949), Vercel’s first mobile app. As a company focused on the web, building a native app was new territory for us.

Our goal was to build an app worthy of an Apple Design Award, and we were open-minded on the best tech stack to get there. To that end, we built dozens of iterations of the product prior to our public beta. We experimented with drastically different tech stacks and UI patterns.

We took inspiration from apps which speak the iPhone’s language, such as Apple Notes and iMessage. v0 had to earn a spot on your Home Screen among the greats.

After weeks of experimentation, we landed on React Native with Expo to achieve this. We are pleased with the results, and our customers are too. In fact, the influx of messages from developers asking how the app feels so native compelled us to write a technical breakdown of how we did it.

## Table of contents

- [How we built the v0 chat experience](#how-we-built-the-v0-chat-experience)
  - [Building a composable chat](#building-a-composable-chat)
  - [Sending your first message](#sending-your-first-message)
  - [Fading in the first assistant message](#fading-in-the-first-assistant-message)
  - [Sending messages in an existing chat](#sending-messages-in-an-existing-chat)
  - [How we solved messages scrolling to the top](#how-we-solved-it)
- [Taming the keyboard](#taming-the-keyboard)
- [Scrolling to end initially](#scrolling-to-end-initially)
- [Floating composer](#floating-composer)
  - [Make it float](#make-it-float)
  - [Make it native](#make-it-native)
  - [Pasting images](#pasting-images)
- [Fading in content](#fading-in-streaming-content)
- [Sharing code between web and native](#sharing-code-between-web-and-native)
- [Styling](#styling)
  - [Native menus](#native-menus)
  - [Native alerts](#native-alerts)
  - [Native bottom sheets](#native-bottom-sheets)
- [Looking forward](#looking-forward)

## How we built the v0 chat experience

When you’re away from your computer, you might have a quick idea you want to act on. Our goal was to let you turn that idea into something tangible, without requiring context switching. v0 for iOS is the next generation of your Notes app, where your ideas get built in the background.

We did not set out to build a mobile IDE with feature parity with our website. Instead, we wanted to build a simple, delightful experience for using AI to make things on the go. The centerpiece of that experience is the chat.

To build a great chat, we set the following requirements:

- New messages animate in smoothly
- New user messages scroll to the top of the screen
- Assistant messages fade in with a staggered transition as they stream
- The composer uses Liquid Glass and floats on top of scrollable content
- Opening existing chats starts scrolled to the end
- Keyboard handling feels natural
- The text input lets you paste images and files
- The text input supports pan gestures to focus and blur it
- Markdown is fast and supports dynamic components

While a number of UI patterns have emerged for AI chat in mobile apps, there is no equivalent set of patterns for AI code generation on mobile.

We hadn’t seen these features in existing React Native apps, so we found ourselves inventing patterns on the fly. It took an extraordinary amount of work, testing, and coordination across each feature to make it meet our standards.

## Building a composable chat

To meet our requirements, we structured our chat code to be [composable](https://www.youtube.com/watch?v=4KvbVq3Eg5w) on a per-feature basis.

Our chat is powered by a few open source libraries: [LegendList](https://legendapp.com/open-source/list/), [React Native Reanimated](https://docs.swmansion.com/react-native-reanimated/), and [React Native Keyboard Controller](https://kirillzyusko.github.io/react-native-keyboard-controller/). To start, we set up multiple context providers.

```tsx
export function ChatProvider({ children }) {
  return (
    <ComposerHeightProvider>
      <MessageListProvider>
        <NewMessageAnimationProvider>
          <KeyboardStateProvider>{children}</KeyboardStateProvider>
        </NewMessageAnimationProvider>
      </MessageListProvider>
    </ComposerHeightProvider>
  )
}
```

The provider wraps the `MessagesList`:

```tsx
export function ChatMessagesList({ chatId }) {
  const messages = useMessages({ chatId }).data
  return (
    <ChatProvider key={chatId}>
      <MessagesList messages={messages} />
    </ChatProvider>
  )
}
```

Next, our messages list implements these features as composable plugins, each with its own hook.

```jsx
function MessagesList({ messages }) {
  useKeyboardAwareMessageList()
  useScrollMessageListFromComposerSizeUpdates()
  useUpdateLastMessageIndex()
  const { animatedProps, ref, onContentSizeChange, onScroll } = useMessageListProps()
  return (
    <AnimatedLegendList
      animatedProps={animatedProps}
      ref={ref}
      onContentSizeChange={onContentSizeChange}
      onScroll={onScroll}
      enableAverages={false}
      data={messages}
      keyExtractor={(item) => item.id}
      renderItem={({ item, index }) => {
        if (item.role === 'user') {
          return <UserMessage message={item} index={index} />
        }
        if (item.role === 'assistant') {
          return <AssistantMessage message={item} index={index} />
        }
        if (item.role === 'optimistic-placeholder') {
          return <OptimisticAssistantMessage index={index} />
        }
      }}
    />
  )
}
```

The following sections break down each hook to demonstrate how they work together.

## Sending your first message

When you send a message on v0, the message bubble smoothly fades in and slides to the top. Immediately after the user message is done animating, the assistant messages fade in.

[Video: 1 light](//videos.ctfassets.net/e5382hct74si/2i1EY6fciOF6pH6rwtzXsJ/bb2cd15c8e941e16f3fb60ad7c27b8ba/1_light.mov)

When the user sends a message, we set a Reanimated shared value to indicate the animation should begin. Shared values let us update state without triggering re-renders.

```tsx
const { isMessageSendAnimating } = useNewMessageAnimation()
const chatId = useChatId()

const onSubmit = () => {
  const isNewChat = !chatId
  
  if (isNewChat) {
    isMessageSendAnimating.set(true)
  }
  
  send()
}
```

With our state tracked in Reanimated, we can now animate our `UserMessage`.

```tsx
export function UserMessage({ message, index }) {
  const isFirstUserMessage = index === 0
  
  const { style, ref, onLayout } = useFirstMessageAnimation({
    disabled: !isFirstUserMessage,
  })
  
  return (
    <Animated.View style={style} ref={ref} onLayout={onLayout}>
      <UserMessageContent message={message} />
    </Animated.View>
  )
}
```

Notice that `UserMessageContent` is wrapped with an `Animated.View` which receives props from `useFirstMessageAnimation`.

### How `useFirstMessageAnimation` works

This hook is responsible for 3 things:

1. Measure the height of the user message with `itemHeight`, a Reanimated shared value
2. Fade in the message when `isMessageSendAnimating`
3. Signal to the assistant message that the animation is complete

```tsx
export function useFirstMessageAnimation({ disabled }) {
  const { keyboardHeight } = useKeyboardContextState()
  const { isMessageSendAnimating } = useNewMessageAnimation()
  const windowHeight = useWindowDimensions().height
  const translateY = useSharedValue(0)
  const progress = useSharedValue(-1)
  const { itemHeight, ref, onLayout } = useMessageRenderedHeight()
  useAnimatedReaction(
    () => {
      const didAnimate = progress.get() !== -1
      if (disabled || didAnimate || !isMessageSendAnimating.get()) {
        return -1
      }
      return itemHeight.get()
    },
    (messageHeight) => {
      if (messageHeight <= 0) return
      const animatedValues = getAnimatedValues({
        itemHeight: messageHeight,
        windowHeight,
        keyboardHeight: keyboardHeight.get(),
      })
      const { start, end, duration, easing, config } = animatedValues
      translateY.set(
        // initialize values at the "start" state with duration 0
        withTiming(start.translateY, { duration: 0 }, () => {
          // next, transition to the "end" state
          translateY.set(withSpring(end.translateY, config))
        })
      )
      progress.set(
        withTiming(start.progress, { duration: 0 }, () => {
          progress.set(withTiming(end.progress, { duration, easing }), () => {
            isMessageSendAnimating.set(false)
          })
        })
      )
    }
  )
  const style = useAnimatedStyle(...)
  const didUserMessageAnimate = useDerivedValue(() => progress.get() === 1)
  
  return { style, ref, onLayout, didUserMessageAnimate }
}
```

Thanks to React Native’s New Architecture, `ref.current.measure()` in `useLayoutEffect` is synchronous, giving us height on the first render. Subsequent updates fire in `onLayout`.

Based on the message height, window height, and current keyboard height, `getAnimatedValues` constructs the easing, `start`, and `end` states for `translateY` and `progress`. The resulting shared values are passed to `useAnimatedStyle` as `transform` and `opacity` respectively.

And there we have it. Our first message fades in using Reanimated. Once it’s done animating, we’re ready to fade in the first assistant message response.

## Fading in the first assistant message

Similar to `UserMessage`, the assistant message content is wrapped in an animated view that fades in after the user message animation completes.

```tsx
function AssistantMessage({ message, index }) {
  const isFirstAssistantMessage = index === 1
  
  const { didUserMessageAnimate } = useFirstMessageAnimation({
    disabled: !isFirstAssistantMessage,
  })

  const style = useAnimatedStyle(() => ({
    opacity: didUserMessageAnimate.get() ? withTiming(1, { duration: 350 }) : 0,
  }))
  
  return (
    <Animated.View style={style}>
      <AssistantMessageContent message={message} />
    </Animated.View>
  )
}
```

This fade in behavior is only enabled for the first assistant message in the chat, where `index === 1`. Messages in existing chats will have different behavior than messages in new chats.

What happens if you open an existing chat that has one user message and one assistant message? Will it animate in again? No, because the animations here only apply if `isMessageSendAnimating` is `true`, which gets set `onSubmit` and cleared when you change chats.

## Sending messages in an existing chat

[Video: 2 light](//videos.ctfassets.net/e5382hct74si/2BjDd90jWvrI86NPlfLbUJ/5e8fad887d72d7700979abdd72ea4147/2_light.mov)

We’ve covered how v0 handles animating in messages for new chats. For existing chats, however, the logic is entirely distinct. Rather than rely on Reanimated animations, such as the one in `useFirstMessageAnimation`, we rely on an implementation of `scrollToEnd()`.

So all we need to do is scroll to end if we’re sending a message in an existing chat, right?

```tsx
useEffect(function onNewMessage() {
  const didNewMessageSend = // ...some logic
  if (didNewMessageSend) {
    listRef.current?.scrollToEnd()
  }
}, ...)
```

In a perfect world, this is all the logic we’d need. Let’s explore why it’s not enough.

If you recall from the introduction, one of our requirements is that new messages have to scroll to the top of the screen. If we simply call `scrollToEnd()`, then the new messages will show at the bottom of the screen.

![1 light-1](//images.ctfassets.net/e5382hct74si/6DCoMXFdBFsHxQeT7qSfgT/254833b8df2197e9f87463ecbb0c0a1d/1_light.png)

We needed a strategy to push the user message to the top of the chat. We referred to this as “blank size”: the distance between the bottom of the last assistant message, and the end of the chat.

![2 light](//images.ctfassets.net/e5382hct74si/9sfzWKr3i85mJNoHOGGIq/f1f26e7c4add400f67831c29e6ab35dd/2_light.png)

To float the content to the top of the chat, we had to push it up by the amount equal to the blank size. Thanks to synchronous height measurements in React Native's New Architecture, this was possible to do on each frame without a flicker. But it still required a lot of trickery and coordination.

In the image above, you’ll notice that the blank size is dynamic. Its height depends on the keyboard’s open state. And it can change on every render, since the assistant message streams in quickly and with unpredictable sizes.

Dynamic heights are a common challenge in virtualized lists. The frequently-updating blank size took that challenge to a new level. Our list items have dynamic, unknown heights that update frequently, and we need them to float to the top.

For long enough assistant messages, the blank size could be zero, which introduced a new set of edge cases.

![3 light](//images.ctfassets.net/e5382hct74si/5Q1ZkUdFiU165GTsJAUhE1/afd257caa004d6d756211ae5697118b7/3_light.png)

## How we solved it

We tried many different approaches to implementing blank size. We tried a `View` at the bottom of the `ScrollView` with height, bottom padding on the `ScrollView` itself, `translateY` on the scrollable content, and minimum height on the last system message. All of these ended up with strange side effects and poor performance, often due to the need for a layout with Yoga.

We ultimately landed on a solution that uses the `contentInset` property on `ScrollView` to handle the blank size without jitters. `contentInset` maps directly to the native property on `UIScrollView` in UIKit.

We then paired `contentInset` together with `scrollToEnd({ offset })` when you send a message.

An assistant message’s blank size is determined by the combination of its own height, the height of the user message that comes before it, and the height of the chat container.

![4 light](//images.ctfassets.net/e5382hct74si/0kHqvY6DECMzEUyJLLw88/bc416f30013786a7f4bbf22c0f5e8b17/4_light.png)

### Implementing `useMessageBlankSize`

To implement blank size, we start with a hook called `useMessageBlankSize` in the assistant message:

```tsx
function AssistantMessage({ message, index }) {
  // ...styling logic
  const { onLayout, ref } = useMessageBlankSize({ index })
  return (
    <Animated.View ref={ref} onLayout={onLayout}>
      <AssistantMessageContent message={message} />
    </Animated.View>
  )
}
```

`useMessageBlankSize` is responsible for the following logic:

1. Synchronously measure the assistant message
2. Measure the user message before it
3. Calculate the minimum distance for the blank size below the assistant message
4. Keep track of what the blank size should be when the keyboard is opened or closed
5. Set the `blankSize` shared value at the root context provider

Lastly, we consume `blankSize` and pass it to the `contentInset` of our `ScrollView`:

```tsx
export function MessagesList(props) {
  const { blankSize, composerHeight, keyboardHeight } = useMessageListContext()

  const animatedProps = useAnimatedProps(() => {
    return {
      contentInset: {
        bottom: blankSize.get() + composerHeight.get() + keyboardHeight.get(),
      },
    }
  })

  return <AnimatedLegendList {...props} animatedProps={animatedProps} />
}
```

`useAnimatedProps` from Reanimated lets us update props on the UI thread on each frame without triggering re-renders. `contentInset` saw great performance and worked far better than every previous attempt.

## Taming the keyboard

Building a good chat experience hinges on elegant keyboard handling. Achieving [native feel](https://x.com/fernandorojo/status/1857403323738927329) in this area was tedious and challenging with React Native. When v0 iOS was in public beta, Apple released iOS 26. Every time a new iOS beta version came out, our chat seemingly broke entirely. Each iOS release turned into a game of cat-and-mouse of reproducing tiny discrepancies and jitters.

Luckily, [Kiryl](https://github.com/kirillzyusko), the maintainer of `react-native-keyboard-controller`, helped us address these issues, often updating the library within 24 hours of Apple releasing a new beta.

### **Building ****`useKeyboardAwareMessageList`**

We used many of the hooks provided by React Native Keyboard Controller to build our own keyboard management system tailored to v0’s chat.

`useKeyboardAwareMessageList` is our custom React hook responsible for all of our keyboard handling logic. We render it alongside our chat list, and it abstracts away everything we need to make the keyboard feel right.

```tsx
function MessagesList() {
  useKeyboardAwareMessageList()
  
  // ...rest of the message list
}
```

While the consumption is a one liner, its internals are about 1,000 lines of code with many unit tests. `useKeyboardAwareMessageList` primarily relies on the upstream `useKeyboardHandler`, handling events like `onStart`, `onEnd`, and `onInteractive`, together with a number of Reanimated `useAnimatedReaction` calls to retry events in particular edge cases.

`useKeyboardAwareMessageList` also handles a number of strange behaviors in iOS. For example, if you send an app to the background when the keyboard is open and then refocus the app, iOS will inexplicably fire the keyboard `onEnd` event three times. Because we relied on imperative behavior when events fired, we came up with tricks to dedupe repeat events and track app state changes.

`useKeyboardAwareMessageList` implements the following features:

1. Shrink the `blankSize` when the keyboard opens
2. If you’re scrolled to the end of the chat, and there’s no blank size, shift content up when the keyboard opens[Video: 3 light](//videos.ctfassets.net/e5382hct74si/1D58hrpmrWpNGH8ImxNi0b/eaf4e7a3a466887e0d9d595a202e80d7/3_light.mov)
3. If you have scrolled high up enough, and there’s no blank size, show the keyboard on top of the content, without shifting the content itself[Video: 4 light](//videos.ctfassets.net/e5382hct74si/6Pnlqr1UuAXtPiDFliNwpK/23de3e7e6cacb3c73ffe56359f2fb29d/4_light.mov)
4. When the user interactively dismisses the keyboard via the scroll view or text input, drag it down smoothly[Video: 5 light](//videos.ctfassets.net/e5382hct74si/4C72IPeDcISsF93MQqwl2x/a2969ee58c54b49dfde2478c3b0ec00b/5_light.mov)
5. If you’re scrolled to the end of the chat, and the blank size is bigger than the keyboard, the content should stay in place[Video: 7 light](//videos.ctfassets.net/e5382hct74si/lA7xOzRkvenEFf04gX3sQ/b14b9310f2545e1d24cdc8ba3c5d5da3/7_light.mov)
6. If you’re scrolled to the end of the chat and the blank size is greater than zero, but it should be zero when the keyboard is open, shift content up so that it lands above the keyboard[Video: 6 light](//videos.ctfassets.net/e5382hct74si/5SEutpFnOjROZEkYB3hkwq/1dce2982afccbe9c0cbd96c3d3f75272/6_light.mov)

There was no single trick to get this all working. We spent dozens of hours using the app, noticing imperfections, tracing issues, and rewriting the logic until it felt right.

## Scrolling to end initially

When you open an existing chat, v0 starts the chat scrolled to end. This is similar to using the `inverted` prop on React Native’s `FlatList` , which is common for bottom-to-top chat interfaces.

However, we decided not to use `inverted` since it felt incompatible with an AI chat where messages stream in multiple times per second. We opted not* *to autoscroll as the assistant message streams. Instead, we let the content fill in naturally under the keyboard, together with a button to scroll to the end. This follows the same behavior as ChatGPT’s iOS app.

That said, we wanted an inverted-list-style experience when you first opened an existing chat. To make this work, we call `scrollToEnd` when a chat first becomes visible.

Due to a complex combination of dynamic message heights and blank size, we had to call `scrollToEnd` multiple times. If we didn’t, our list would either not scroll properly, or scroll too late. Once the content has scrolled, we call `hasScrolledToEnd.set(true)` to fade in the chat.

```tsx
import { scheduleOnRN } from 'react-native-worklets'

export function useInitialScrollToEnd(blankSize, scrollToEnd, hasMessages) {
  const hasStartedScrolledToEnd = useSharedValue(false)
  const hasScrolledToEnd = useSharedValue(false)
  const scrollToEndJS = useLatestCallback(() => {
    scrollToEnd({ animated: false })
    // Do another one just in case because the list may not have fully laid out yet
    requestAnimationFrame(() => {
      scrollToEnd({ animated: false })

      // and another one again in case
      setTimeout(() => {
        scrollToEnd({ animated: false })

        // and yet another!
        requestAnimationFrame(() => {
          hasScrolledToEnd.set(true)
        })
      }, 16)
    })
  })

  useAnimatedReaction(
    () => {
      if (hasStartedScrolledToEnd.get() || !hasMessages) {
        return false
      }
      return blankSize.get() > 0
    },
    (shouldScroll) => {
      if (shouldScroll) {
        hasStartedScrolledToEnd.set(true)
        scheduleOnRN(scrollToEndJS)
      }
    }
  )

  return hasScrolledToEnd
}
```

## Floating composer

Inspired by iMessage’s bottom toolbar in iOS 26, we built a Liquid Glass composer with a progressive blur.

[Video: 8 light](//videos.ctfassets.net/e5382hct74si/12E63wl4g53Pn4EeSGvG0d/cb78deabd9c7cb981ab50751a116c335/8_light.mov)

We used `@callstack/liquid-glass` to add interactive Liquid Glass. By wrapping the glass views with `LiquidGlassContainerView`, we automatically get the view morphing effect.

```tsx
<LiquidGlassContainerView spacing={8}>
  <LiquidGlassView interactive>...</LiquidGlassView>
  <LiquidGlassView interactive>...</LiquidGlassView>
</LiquidGlassContainerView>
```

### Make it float

After adding the Liquid Glass, the next step was making it float on top of the chat content.

[Video: 9 light](//videos.ctfassets.net/e5382hct74si/WJ6v15rlHaqLbwC0gE1xe/53eb48adfcc2be7f2d7f74f74411906e/9_light_original.mp4)

In order to make the composer float on top of the scrollable content, we took the following steps:

1. Add `position: absolute; bottom: 0` to the composer
2. Wrap the composer in `KeyboardStickyView` from `react-native-keyboard-controller`
3. Synchronously measure the composer, and store its height in context using a shared value
4. Add the `composerHeight.get()` to our ScrollView’s native `contentInset.bottom` property

```tsx
function Composer() {
  const { composerHeight } = useComposerHeightContext()
  const { onLayout, ref } = useSyncLayoutHandler((layout) => {
    composerHeight.set(layout.height)
  })
  const insets = useInsets()
  return (
    <KeyboardStickyView
      style={{ position: 'absolute', bottom: 0, left: 0, right: 0 }}
      offset={{ closed: -insets.bottom, opened: -8 }}
    >
      <View
        ref={ref}
        onLayout={onLayout}
      >
        {/* ... */}
      </View>
    </KeyboardStickyView>
  )
}
```

However, this was not enough. We are still missing one key behavior.

As you type, the text input’s height can increase. When you type new lines, we want to simulate the experience of typing in a regular, non-absolute-positioned input. We had to find a way to shift the chat messages upwards, but only if you are scrolled to the end of the chat.

In the video below, you can see both cases. At the start of the video, content shifts up with new lines since the chat is scrolled to the end. However, after scrolling up in the chat, typing new lines will not shift the content.

[Video: 10 light](//videos.ctfassets.net/e5382hct74si/1u6lxCyOqzpeu8EdbGrEAm/ebb83393a3273294282bffc3e335b711/10_light.mov)

### `useScrollWhenComposerSizeUpdates`

Enter `useScrollWhenComposerSizeUpdates`. This hook listens to the height of the composer and automatically scrolls to end when needed. To consume it, we simply call it in `MessagesList`:

```tsx
export function MessagesList() {
  useScrollWhenComposerSizeUpdates()
 
  // ...message list code  
}
```

First, it sets up an effect using `useAnimatedReaction` to track composer height changes.

Next, we call `autoscrollToEnd`. As long as you’re close enough to the end of the scrollable area, we automatically scroll to the end of the chat. Without this, entering new lines in the composer would overlap the bottom of the scrollable area.

`useScrollWhenComposerSizeUpdates` lets us conditionally simulate the experience of a view that is not absolute-positioned.

```tsx
export function useScrollWhenComposerSizeUpdates() {
  const { listRef, scrollToEnd } = useMessageListContext()
  const { composerHeight } = useComposerHeightContext()

  const autoscrollToEnd = () => {
    const list = listRef.current
    if (!list) {
      return
    }

    const state = list.getState()
    const distanceFromEnd =
      state.contentLength - state.scroll - state.scrollLength

    if (distanceFromEnd < 0) {
      scrollToEnd({ animated: false })
      // wait a frame for LegendList to update, and fire it again
      setTimeout(() => {
        scrollToEnd({ animated: false })
      }, 16)
    }
  }

  useAnimatedReaction(
    () => composerHeight.get(),
    (height, prevHeight) => {
      if (height > 0 && height !== prevHeight) {
        scheduleOnRN(autoscrollToEnd)
      }
    }
  )
}
```

As we saw in earlier code, we unfortunately relied on a number of `setTimeout` and `requestAnimationFrame` calls to `scrollToEnd`. That code will understandably raise eyebrows, but it was the only way we managed to get scrolling to end working properly. We’re actively collaborating with [Jay](https://github.com/jmeistrich), the maintainer of LegendList, to build a more reliable approach.

### Make it feel native

React Native’s built-in `TextInput` felt out of place in a native chat app.

By default, when you set `multiline={true}`, the `TextInput` shows ugly scroll indicators, which is inconsistent with most chat apps. Swiping up and down on the input will bounce its internal content, even if you haven’t typed any text yet. Additionally, the input doesn't support interactive keyboard dismissal.

To fix these issues, we applied a patch to `RCTUITextView` in native code. This patch disables scroll indicators, removes bounce effects, and enables interactive keyboard dismissal.

Our patch also adds support for swiping up to focus the input. We realized we needed this after watching testers frustratingly swipe up expecting the keyboard to open.

```bash
diff --git a/Libraries/Text/TextInput/Multiline/RCTUITextView.mm b/Libraries/Text/TextInput/Multiline/RCTUITextView.mm
index 6e9c3841cee19632eaa59ae2dbd541a85ce7cabf..e3f920acbc2bb074582ed2b531ddd90e2017d59c 100644
--- a/Libraries/Text/TextInput/Multiline/RCTUITextView.mm
+++ b/Libraries/Text/TextInput/Multiline/RCTUITextView.mm
@@ -55,6 +55,16 @@ - (instancetype)initWithFrame:(CGRect)frame
     self.textContainer.lineFragmentPadding = 0;
     self.scrollsToTop = NO;
     self.scrollEnabled = YES;
+
+    // Fix bouncing, scroll indicator, and keyboard mode gesture
+    self.showsVerticalScrollIndicator = NO;
+    self.showsHorizontalScrollIndicator = NO;
+    self.bounces = NO;
+    self.alwaysBounceVertical = NO;
+    self.alwaysBounceHorizontal = NO;
+    self.keyboardDismissMode = UIScrollViewKeyboardDismissModeInteractive;
+    [self.panGestureRecognizer addTarget:self action:@selector(_handlePanToFocus:)];
+
     _initialValueLeadingBarButtonGroups = nil;
     _initialValueTrailingBarButtonGroups = nil;
   }
@@ -62,6 +72,18 @@ - (instancetype)initWithFrame:(CGRect)frame
   return self;
 }
 
+- (void)_handlePanToFocus:(UIPanGestureRecognizer *)g
+{
+    if (self.isFirstResponder) { return; }
+    if (g.state != UIGestureRecognizerStateBegan) { return; }
+    CGPoint v = [g velocityInView:self];
+    CGPoint t = [g translationInView:self];
+    // Add pan gesture to focus the keyboard
+    if (v.y < -250.0 && !self.isFirstResponder) {
+        [self becomeFirstResponder];
+    }
+}
+
 - (void)setDelegate:(id<UITextViewDelegate>)delegate
 {
   // Delegate is set inside `[RCTBackedTextViewDelegateAdapter initWithTextView]` and
```

While maintaining a patch across React Native updates is not ideal, it was the most practical solution we found. We would have preferred an official API for extending native views without patching, and we plan on contributing this patch to React Native core if there is community interest.

## Pasting images

To support pasting images and files in the text input, we used an Expo Module that listens to paste events from the native `UIPasteboard`.

[Video: pasting-images-light (1)](//videos.ctfassets.net/e5382hct74si/11tQyMrojbB6fckv6dpZrp/04ff0e7efc54c67adec34230521b9b47/pasting-images-light__1_.mp4)

If you paste long enough text, `onPaste` will automatically turn the pasted content into a `.txt` file attachment.

```tsx
<TextInputWrapper onPaste={pasted => ...}>
  <TextInput />
</TextInputWrapper>
```

Since it was difficult to extend the existing `TextInput` in native code, we use a `TextInputWrapper` component which wraps `TextInput` and traverses its `subviews` in Swift. For more in-depth examples of creating native wrapper components, you can watch my 2024 talk, [“Don’t be afraid to build a native library”](https://youtu.be/mG1Lv-RWds8?si=UCSHQQAnfsYGdr4P).

## Fading in streaming content

[Video: 12 light](//videos.ctfassets.net/e5382hct74si/2mSI4Vs2WtP7SMHu25ZozX/528ecb69cbe6d81f50b9ec51ad93799d/12_light.mov)

When an AI’s assistant message streams in, it needs to feel smooth. To achieve this, we created two components:

1. `<FadeInStaggeredIfStreaming />`
2. `<TextFadeInStaggeredIfStreaming />`

As long as an element gets wrapped by one of these components, its children will smoothly fade in with a staggered animation.

```tsx
const mdxComponents = {
  a: function A(props) {
    return (
      <Elements.A {...props}>
        <TextFadeInStaggeredIfStreaming>
          {props.children}
        </TextFadeInStaggeredIfStreaming>
      </Elements.A>
    )
  },
  // ...other components
}
```

Under the hood, these components render a variation of `FadeInStaggered`, which handles the state management:

```tsx
const useIsAnimatedInPool = createUsePool()

function FadeInStaggered({ children }) {
  const { isActive, evict } = useIsAnimatedInPool()
  return isActive ? <FadeIn onFadedIn={evict}>{children}</FadeIn> : children
}
```

`useIsAnimatedInPool` is a custom state manager outside of React that allows a limited number of ordered elements to get rendered at once. Elements request to join the pool when they mount, and `isActive` indicates if they should render an animated node.

After the `onFadedIn` callback fires, we evict the element from the pool, rendering its children directly without the animated wrapper. This helps us limit the number of animated nodes that are active at once.

Lastly, `FadeIn` renders a staggered animation with a delay of 32 milliseconds between elements. The staggered animations run on a schedule, animating a batch of 2 items at a time. When the queue of staggered items becomes higher than 10, we increase the number of batched items according to the size of the queue.

```tsx
const useStaggeredAnimation = createUseStaggered(32)

function FadeIn({ children, onFadedIn, Component }) {
  const opacity = useSharedValue(0)

  const startAnimation = () => {
    opacity.set(withTiming(1, { duration: 500 }))
    setTimeout(onFadedIn, 500)
  }

  useStaggeredAnimation(startAnimation)

  return <Component style={{ opacity }}>{children}</Component>
}
```

`TextFadeInStaggeredIfStreaming` uses a similar strategy. We first chunk words into individual text nodes, then we create a unique pool for text elements with a limit of 4. This ensures that no more than 4 words will fade in at a time.

```tsx
const useShouldTextFadePool = createUsePool(4)
function TextFadeInStaggeredIfStreaming(props) {
  const { isStreaming } = use(MessageContext)
  const { isActive } = useShouldTextFadePool()
  const [shouldFade] = useState(isActive && isStreaming)
  let { children } = props
  if (shouldFade && children) {
    if (Array.isArray(children)) {
      children = Children.map(children, (child, i) =>
        typeof child === 'string' ? <AnimatedFadeInText key={i} text={child} /> : child,
      )
    } else if (typeof children === 'string') {
      children = <AnimatedFadeInText text={children} />
    }
  }
  return children
}
function AnimatedFadeInText({ text }) {
  const chunks = text.split(' ')
  return chunks.map((chunk, i) => <TextFadeInStaggered key={i} text={chunk + ' '} />)
}
function TextFadeInStaggered({ text }) {
  const { isActive, evict } = useIsAnimatedInPool()
  return isActive ? <FadeIn onFadedIn={evict}>{text}</FadeIn> : text
}
```

One issue we faced with this approach is that it relies heavily on firing animations *on mount*. As a result, if you send a message, go to another chat, and then come back to the original chat before the message is done sending, it will remount and animate once again.

To mitigate this, we implemented a system that keeps track of which content you've already seen animate across chats. The implementation uses a `DisableFadeProvider` towards the top of the message in the tree. We consume it in the root fade component to avoid affecting the pool if needed.

```tsx
function TextFadeInStaggeredIfStreaming(props) {
  const { isStreaming } = use(MessageContext)
  const { isActive } = useShouldTextFadePool()
  const isFadeDisabled = useDisableFadeContext()

  const [shouldFade] = useState(!isFadeDisabled && isActive && isStreaming)
  
  if (shouldFade) // here we render TextFadeIn...
  
  return props.children
}
```

While it might look unusual to explicitly rely on `useState`'s initial value in a non-reactive way, this let us reliably track elements and their animation states based on their mount order.

## Sharing code between web and native

When we started building the v0 iOS app, a natural question arose: how much code should we share between web and native?

Given how mature the v0 web monorepo was, we decided to share types and helper functions, but not UI or state management. We also made a concerted effort to migrate business logic from client to server, letting the v0 mobile app be a thin wrapper over the API.

### Building a shared API

Sharing the backend API routes between a mature Next.js app and a new mobile app introduced challenges. The v0 web app is powered by React Server Components and Server Actions, while the mobile app functions more like a single-page React app.

To address this, we built an API layer using a hand-rolled backend framework. Our framework enforces runtime type safety by requiring input and output types specified with [Zod](https://zod.dev/).

After defining the routes, we generate an [openapi.json file](https://api.v0.dev/v1/openapi.json) based on each route’s Zod types. The mobile app consumes the OpenAPI spec using [Hey API](https://heyapi.dev), which generates helper functions to use with [Tanstack Query](https://tanstack.com/query/latest).

```tsx
import { termsFindOptions } from '@/api' // this folder is generated
import { useQuery } from '@tanstack/react-query'

export function useTermsQuery({ after }) {
  return useQuery(termsFindOptions({ after }))
}
```

This effort led to the development of the [v0 Platform API](https://v0.app/docs/api/platform/quickstart). We wanted to build the ideal API for our own native client, and we ultimately decided to make that same API available to everyone. Thanks to this approach, v0 mobile uses the same routes and logic as v0’s Platform API customers.

On each commit, we run tests to ensure that changes to our OpenAPI spec are compatible with the mobile app.

In the future, we hope to eliminate the code generation step entirely with a type-level RPC wrapper around the Platform API.

## Styling

v0 uses `react-native-unistyles` for styles and theming. My experience with React Native has taught me to be cautious of any work done in render. Unlike other styling libraries we evaluated, Unistyles provides comprehensive theming without re-rendering components or accessing React Context.

## Native menus

Beyond Unistyles for themes and styles, we did not use a JS-based component library. Instead, we relied on native elements where possible.

[Video: 13 light](//videos.ctfassets.net/e5382hct74si/2cCYHIm4ar1joSIP1Jrtf9/9927bde956f4f83566cf6a4cdcc24eec/13_light.mov)

For menus, we used [Zeego](https://zeego.dev), which relies on [react-native-ios-context-menu](https://github.com/dominicstop/react-native-ios-context-menu) to render the native `UIMenu` under the hood. Zeego automatically renders Liquid Glass menus when you build with Xcode 26.

## Native alerts

React Native apps on iOS 26 experienced the `Alert` pop-up rendering offscreen. We reproduced this in our own app and in many popular React Native apps. We patched it locally and worked with developers from Callstack and Meta to [upstream a fix in React Native](https://github.com/facebook/react-native/pull/53500).

## Native bottom sheets

For bottom sheets, we used the built-in React Native modal with `presentationStyle="formSheet"`. However, this came with a few downsides which we addressed with patches.

### Modal dragging issues

First, when dragging the sheet down, it temporarily froze in place before properly dismissing. To resolve this, we patched React Native locally. We worked with Callstack to [upstream our patch](https://github.com/facebook/react-native/pull/51483) into React Native, and it’s now live in 0.82.

### Fixing Yoga flickering

If you put a `View` with `flex: 1` inside a modal with a background color, and then drag the modal up and down, the bottom of the view flickers aggressively.

To solve this, we patched React Native locally to support synchronous updates for modals in Yoga. We collaborated with developers from Callstack, Expo and Meta to upstream this change into React Native core. [It's now live](https://github.com/facebook/react-native/pull/52604) in React Native 0.82.

## Looking forward

After building our first app using React Native with Expo, we aren’t looking back. If you haven't tried v0 for iOS yet, [download it](https://apps.apple.com/us/app/v0/id6745097949) and let us know what you think with an App Store review.

We're hiring developers to join the Vercel Mobile team. If this kind of work excites you, we'd love to [hear from you](https://vercel.com/careers/mobile-engineer-us-5719796004).

At Vercel, we're committed to building ambitious products at the highest caliber. We want to make it easy for web and native developers to do the same, and we plan to open-source our findings. Please [reach out on X](https://x.com/fernandorojo) if you would like to beta test an open source library for AI chat apps. We look forward to partnering with the community to continue improving React Native.

---

**More posts:** [View all blog posts](https://vercel.com/blog/sitemap.md) | [Changelog](https://vercel.com/changelog/sitemap.md)