EN

Präsentiere deine selbstgehosteten App-Entwürfe auf jedem Smartphone.

Mehr erfahren

Hol’s dir für lau!

Für Android – und bald auch iOS. Kostenlos und frei von Werbung.

Pack rein, was du brauchst.

qiew ist ein Fullscreen-Browser und bietet somit einen flexiblen Rahmen für deine App-Prototypen.


Einfach

QR Code scannen und testen. Schütteln, um zu schließen.

Flexibel

Hoste deine Inhalte, wo du willst. Binde Bilder, Videos oder JS ein.

Kompatibel

Selbst ohne qiew kann jeder QR Scanner deine Links öffnen.

(Bald) Kürzer

Erstelle Shortlinks deiner Urls für kompakte QR-Codes.

So funktioniert’s:

  1. Kopiere diesen Code in eine HTML-Datei.
  2. Passe den Link zu deinem Bild/Entwurf an.
  3. kopiere die HTML-Datei mit deinem Bild auf einen Webserver.
  4. Erstelle einen QR-Code mit Link zu deiner HTML-Datei.
  5. Verteile deinen QR-Code, damit sich andere deinen Entwurf ansehen können!
<html>
	<head>
		<meta charset="utf-8">
		
		<!-- Last entry "viewport-fit=cover" is important to show your design fullscreen on iOS devices with notch. -->
		<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width, height=device-height, viewport-fit=cover">
		
		<!--
qiew has its own meta tag to control the status bar style on iOS and Android. 
"statusbar-style" is for iOS and can have the value "default", "lightcontent", "blacktranslucent", "blackopaque" or "hidden".
"theme-color" is for Android and can have the value "transparent" or any hex color in this format: #000000.
-->
		<meta name="qiew" content="statusbar-style=lightcontent, theme-color=#000000">
		
		<!-- Load some reset styles to display your image correctly -->
		<link href="https://qiew.app/src/qiew.min.css" rel="stylesheet">
		
		<title>Your App name</title>
	</head>
	<body style="background: #FFFFFF;">
		<img src="path/to/my-app-screen.jpg" alt="" />
	</body>
</html>