Back to Marketplace
30-day free campaign

Run this helper free — no credit card

Every helper is free for 30 days. Answer 3 questions and get the full result in 2 minutes.

Start free →
FREE
Scanned
Grow Business

BeRu

AI Skillset: React Native "Kawaii" UI/UX Specialist

👁 1 views · 📦 0 installs

Install in one line

mfkvault install mokhammadbahauddin-beru

Requires the MFKVault CLI. Prefer MCP?

New skill
No reviews yet
New skill
This helper was discovered by MFKVault crawlers from public sources. Original author retains all rights. To request removal: [email protected]
Community helper
This helper was discovered by MFKVault crawlers from public sources. MFKVault does not create, maintain, or guarantee the output of this helper. Results are AI-generated and may be incomplete, inaccurate, or outdated. Use at your own risk. Original author retains all rights. Request removal
FREE

Free to install — no account needed

Copy the command below and paste into your agent.

Instant access • No coding needed • No account needed

What you get in 5 minutes

  • Full skill code ready to install
  • Works with 1 AI agent
  • Lifetime updates included
SecureBe the first
Ready to run

Run this helper

Answer a few questions and let this helper do the work.

Advanced: use with your AI agent

Description

AI Skillset: React Native "Kawaii" UI/UX Specialist 1. Core Principles You are an expert in converting High-Fidelity Web Prototypes (HTML/Tailwind) into React Native (Expo) applications. You prioritize "Juice" (feedback, animation, sound) over generic UI. 2. Styling Strategy (NativeWind Master) Translation: You instantly translate HTML class="..." to React Native className="...". Layouts: Web flex-col -> React Native flex-col (Default). Web absolute -> React Native absolute. Warning: React Native does not support grid. Convert all CSS Grids to Flexbox (flex-wrap, flex-row). Shadows: Web box-shadow does not translate directly. iOS: Use shadow-color, shadow-offset, shadow-opacity. Android: Use elevation. NativeWind Shortcut: Use shadow-sm, shadow-md but verify elevation on Android. 3. Animation Implementation (Reanimated) Do NOT use the standard Animated API. Use react-native-reanimated (v3). Pattern: "The Breathing Effect" const scale = useSharedValue(1); useEffect(() => { scale.value = withRepeat( withSequence(withTiming(1.05, { duration: 2000 }), withTiming(1, { duration: 2000 })), -1, // Infinite true // Reverse ); }, []); const animatedStyle = useAnimatedStyle(() => ({ transform: [{ scale: scale.value }] })); Pattern: "The Juicy Button Press" Create a reusable <JuicyButton> component that wraps Pressable. const JuicyButton = ({ children, onPress }) => { const scale = useSharedValue(1); const handlePressIn = () => { scale.value = withSpring(0.9); }; const handlePressOut = () => { scale.value = withSpring(1); }; return ( <GestureDetector> <AnimatedPressable onPressIn={handlePressIn} onPressOut={handlePressOut} style={...}> {children} </AnimatedPressable> </GestureDetector> ); }; Pattern: "Animated Modals" For simple overlay modals, use Absolute Position + Reanimated Entry/Exit animations. Example: `entering={FadeIn} exiting={FadeOut}` from `react-native-reanimated`. 4. Glassmorphism in React Native Web's backdrop-filter: blur() is hard in RN. Solution: Use expo-blur. Implementation: import { BlurView } from 'expo-blur'; <BlurView intensity={20} tint="light" className="overflow-hidden rounded-3xl"> <View className="bg-white/50 p-4">...</View> </BlurView> 5. AI Integration Pattern Never expose API Keys in client code. Best Practice: Create a services/ai.ts file. Error Handling: Always wrap Gemini calls in try/catch and provide a "fallback" cute message if the API fails (e.g., "Sinyal bebek hilang... Kwek?"). Implementation Detail: Use `@google/generative-ai`. Maintain a simple conversation history for the Chat context. 6. Asset Management Images: Use expo-image for better caching and performance than the standard Image. SVGs: Use react-native-svg and lucide-react-native for icons. Do NOT try to use standard HTML svg tags. 7. Sound Design (The "Click" Feel) Use expo-haptics for tactile feedback on EVERY interaction. Use `expo-av` for Audio. Pattern: "Fire and Forget Sound" Create a helper `playSound('pop')`. Load sounds asynchronously but play them instantly. Handle errors gracefully (if sound fails, app shouldn't crash). 8. Modal Architecture (New) Avoid standard `Modal` from React Native if you want custom backdrop blurs or complex transitions. Instead, use a "Portal" pattern or simply an absolute positioned View with Z-index on top of the screen content, managed by state in `HomeScreen` or a global ModalContext. For this project, managing local state in `HomeScreen` for modal visibility is acceptable for simplicity given the scope.

Preview in:

Security Status

Scanned

Passed automated security checks

Time saved
How much time did this skill save you?

Related AI Tools

More Grow Business tools you might like

codex-collab

Free

Use when the user asks to invoke, delegate to, or collaborate with Codex on any task. Also use PROACTIVELY when an independent, non-Claude perspective from Codex would add value — second opinions on code, plans, architecture, or design decisions.

Run free

Rails Upgrade Analyzer

Free

Analyze Rails application upgrade path. Checks current version, finds latest release, fetches upgrade notes and diffs, then performs selective upgrade preserving local customizations.

Run free

Asta MCP — Academic Paper Search

Free

Domain expertise for Ai2 Asta MCP tools (Semantic Scholar corpus). Intent-to-tool routing, safe defaults, workflow patterns, and pitfall warnings for academic paper search, citation traversal, and author discovery.

Run free

Hand Drawn Diagrams

Free

Create hand-drawn Excalidraw diagrams, flows, explainers, wireframes, and page mockups. Default to monochrome sketch output; allow restrained color only for page mockups when the user explicitly wants webpage-like fidelity.

Run free

Move Code Quality Checker

Free

Analyzes Move language packages against the official Move Book Code Quality Checklist. Use this skill when reviewing Move code, checking Move 2024 Edition compliance, or analyzing Move packages for best practices. Activates automatically when working

Run free

Claude Memory Kit

Free

"Persistent memory system for Claude Code. Your agent remembers everything across sessions and projects. Two-layer architecture: hot cache (MEMORY.md) + knowledge wiki. Safety hooks prevent context loss. /close-day captures your day in one command. Z

Run free