RORK LABJP
BUILD — Rork generates native iOS/Android apps with React Native (Expo) from a plain-English description into deployable codeMAX — Rork Max outputs native Swift, targeting iPhone, iPad, Apple Watch, Apple TV, Vision Pro, and iMessageMAX — Real Swift output balances performance and App Store eligibility — currently the only tool doing thisDEPLOY — Shareable test links and automatic iOS/Android builds remove the need for separate build pipelinesPRICE — Free to start, with paid plans from $25/month — practical for solo devs from prototype to releaseFOCUS — Unlike web-first tools like Bolt or Lovable, Rork specializes in mobile appsBUILD — Rork generates native iOS/Android apps with React Native (Expo) from a plain-English description into deployable codeMAX — Rork Max outputs native Swift, targeting iPhone, iPad, Apple Watch, Apple TV, Vision Pro, and iMessageMAX — Real Swift output balances performance and App Store eligibility — currently the only tool doing thisDEPLOY — Shareable test links and automatic iOS/Android builds remove the need for separate build pipelinesPRICE — Free to start, with paid plans from $25/month — practical for solo devs from prototype to releaseFOCUS — Unlike web-first tools like Bolt or Lovable, Rork specializes in mobile apps
Articles/Dev Tools
Dev Tools/2026-06-26Intermediate

Watermark Only the Shared Image in Your Rork Wallpaper App

In a Rork-generated Expo wallpaper or image app, keep saved images untouched and burn a watermark only into the share export, shown two ways — react-native-view-shot and Skia — with the resolution-loss pitfalls to avoid.

Rork455Expo108react-native-view-shotSkiawallpaper app22

Premium Article

Running a wallpaper app for a long time, the moment a user's image spreads across social media is the most rewarding — and also the one where it feels wasteful that it travels with no trace of where it came from. As an indie developer who has run wallpaper and calm-and-wellness apps on the App Store and Google Play, I can say that a small app name in the corner of one shared image reliably brings people who search and install from it.

But get the watermark wrong and it backfires. Burn it into the wallpaper a user saves to their own device and "there's a logo on my lock screen" turns into one-star reviews. The aim is narrow: keep the saved copy clean and composite a watermark only when exporting for a social share. Building on the Expo (React Native) code Rork emits, here is how to split those two outputs.

Separating saved versus shared images

Decide the policy first. The app handles one "original" image, but it has two exits.

  1. What goes to device save and wallpaper-set is the original, untouched. No watermark.
  2. Only when sharing to social or another app do you generate a new image with the watermark composited on top of the original, and hand that to the share sheet.

Insert this fork one step before the share call and you keep the discovery path without hurting the experience. I recommend this split above all else. Treat the watermark as something added "for the people it spreads to," not "for the user," and the design stops wandering.

The quick path: composite and capture with view-shot

The lightest approach is to display the image and the watermark stacked on screen and capture that region, using react-native-view-shot.

import { useRef } from "react";
import { View, Image, Text, StyleSheet } from "react-native";
import ViewShot, { captureRef } from "react-native-view-shot";
import * as Sharing from "expo-sharing";
 
export function WatermarkedShare({ uri }: { uri: string }) {
  const shotRef = useRef<ViewShot>(null);
 
  async function shareWithWatermark() {
    // Capture the offscreen-style view at the original resolution
    const out = await captureRef(shotRef, {
      format: "jpg",
      quality: 0.95,
      result: "tmpfile",
    });
    await Sharing.shareAsync(out);
  }
 
  return (
    <ViewShot ref={shotRef} style={styles.canvas}>
      <Image source={{ uri }} style={styles.base} resizeMode="cover" />
      <Text style={styles.mark}>made with Aurora Wallpapers</Text>
    </ViewShot>
  );
}
 
const styles = StyleSheet.create({
  canvas: { width: 1080, height: 1920 },
  base: { width: 1080, height: 1920 },
  mark: {
    position: "absolute", right: 24, bottom: 28,
    color: "rgba(255,255,255,0.85)", fontSize: 28, fontWeight: "600",
  },
});

The upside is speed, but there is a pitfall. captureRef essentially captures at the screen's pixel density, so even with width: 1080 the real size shifts on Retina devices, and the export comes out blurry or oddly huge. With a high-resolution wallpaper as the original, that screen dependence shows up directly as quality loss. For a prototype or a lower resolution view-shot is fine, but for a wallpaper app that needs exact resolution I recommend the next approach.

Thank you for reading this far.

Continue Reading

What follows includes implementation code, benchmarks, and practical content we hope you'll find useful. This site runs without ads — server and development costs are supported entirely by members like you. If it's been helpful, we'd be truly grateful for your support.

WHAT YOU'LL LEARN
Design a two-path flow where saved images stay untouched and only the social share export gets a branded watermark
Get both the fast view-shot approach and the resolution-preserving Skia approach in working code, with a rule for when to use which
Pre-empt the post-launch quality issues — blurry marks, clipped edges, and image degradation when shared
Secure payment via Stripe · Cancel anytime

Unlock This Article

Get full access to the rest of this article. Buy once, read anytime. This site is ad-free — your support goes directly toward keeping it running.

or
Unlock all articles with Membership →
Share

Thank You for Reading

Rork Lab is ad-free, supported entirely by members like you. We publish practical guides daily with implementation code, benchmarks, and production-ready patterns. If you've found it useful, we'd love to have you on board.

  • Copy-paste ready implementation code
  • New advanced guides published daily
  • $5/mo or $10 for lifetime access
View Membership →

Related Articles

Dev Tools2026-05-26
Two Weeks Tightening Up iPad Support for a Rork-Generated Wallpaper App
Notes from spending two weeks tightening up iPad support for a wallpaper app I scaffolded with Rork. Coming from an iPhone-centric indie practice since 2014, I cover where Rork's defaults stopped, how the AdMob adaptive banner misbehaved on iPad, and what changed in retention afterwards.
Dev Tools2026-06-26
Keep Your Rork App's Review From Stalling on a Privacy Manifest Gap
Handle PrivacyInfo.xcprivacy and Required Reason APIs in a Rork Expo app — a common cause of App Store review stalls — with the app.config.ts setup and a step-by-step check of third-party SDKs.
Dev Tools2026-06-26
Keep Audio Playing in the Background and Add Lock Screen Controls in a Rork App
How to make a Rork-generated Expo app keep playing music or healing sounds in the background and expose lock screen and Control Center controls, with working expo-audio code and the platform-specific gotchas.
📚RECOMMENDED BOOKS
Build a Large Language Model (From Scratch)
Sebastian Raschka
LLM Dev
Prompt Engineering for LLMs
Berryman & Ziegler
Prompting
AI Engineering
Chip Huyen
AI Eng
* Contains affiliate links
See all →