Native Only Animated View

A view that animates only on native platforms and is a plain View on web.

Installation

npx lovdacn@latest add native-only-animated-view

(You can also use the shortened lvcn alias, e.g., npx lvcn@latest add native-only-animated-view)

This copies the component source into your project (typically components/ui/native-only-animated-view.tsx) and installs any required dependencies.

Registry dependencies: utils

Usage

import { NativeOnlyAnimatedView } from "@/components/ui/native-only-animated-view"
import { Text } from "@/components/ui/text"

export function Example() {
  return (
    <NativeOnlyAnimatedView className="p-4">
      <Text>Animated on native</Text>
    </NativeOnlyAnimatedView>
  )
}

Styles

lvcn components are available across all style packs:

StyleNotes
defaultClassic rounded system
new-yorkCompact, refined
novaSharp corners (default in many setups)
luma / lyra / maia / miraRadius & font variants
rhea / sera / vegaPill, zero-radius, balanced

Style is set at project init via lvcn.json (style + styleEngine).

Platform

These components target Expo / React Native with NativeWind or Uniwind. They use Platform.select where web and native need different behavior.