Close Menu
InclusiFund
    What's Hot

    Rach Finance wants Africans to spend cash like crypto

    May 26, 2026

    How Assexmarkets is Rewriting the Rules of Retail Trading for African Traders

    May 26, 2026

    Your Prototype Is Not Being Honest With Your Users (And Here’s How To Fix It) — Smashing Magazine

    May 26, 2026
    Facebook X (Twitter) Instagram
    InclusiFund
    Facebook X (Twitter) Instagram
    • Home
    • Daily Brief
    • Dealflow Dashboard
    • Sectors
      • Agritech
      • Climate Tech
      • Fintech
      • Healthtech
      • Logistics
      • Mobility
      • SaaS / Enterprise
    • Tools
    • Reports
    • Opinion
    • Services
      • For Investors
      • For Founders
    • About Us
    • More
      • Disclaimer
      • Advertise With Us
      • Newsletter
      • Work With Us
      • Terms and Conditions
      • Privacy Policy
      • Contact Us
      • About Us
    InclusiFund
    Home»Tools»Your Prototype Is Not Being Honest With Your Users (And Here’s How To Fix It) — Smashing Magazine
    Tools

    Your Prototype Is Not Being Honest With Your Users (And Here’s How To Fix It) — Smashing Magazine

    ElanBy ElanMay 26, 2026No Comments6 Mins Read
    Facebook Twitter Pinterest LinkedIn Tumblr Reddit WhatsApp Email
    Your Prototype Is Not Being Honest With Your Users (And Here’s How To Fix It) — Smashing Magazine
    Share
    Facebook Twitter LinkedIn Pinterest WhatsApp Email

    There’s a moment in almost every usability session where a participant pauses at the login screen, types something, and glances up: checking whether they’re “doing it right.” That pause is a clear sign. They’ve already clocked that this isn’t a real app, and every data point collected after that moment is filtered through that awareness.

    There’s a moment in almost every usability session where a participant pauses at the login screen, types something, and glances up: checking whether they’re “doing it right.” That pause is a clear sign. They’ve already clocked that this isn’t a real app, and every data point collected after that moment is filtered through that awareness.

    In financial product testing, the problem is sharper. Finance users are trained to notice when something feels off: a balance that doesn’t add up, a field that accepts anything. When a banking prototype skips real authentication, participants don’t just disengage; they stop mid-session to flag it. The team walks away with findings that reflect how users behave in a demonstration, not in a real product.

    The fix is narrower than you’d think. Identify the moment where participant trust is established and make that interaction real. In a banking app, that moment is the login.

    This tutorial builds it: credentials that validate, a live error state, and a biometric animation that feels native — no code required.

    What We’re Building: A Login That Behaves Like A Shipped Product

    The login flow, built around Pie Bank, a mobile banking prototype, includes functional text inputs, a masked password field, credential validation, a live error state, and a Face ID animation timed to feel indistinguishable from iOS.

    What you’ll need:

    • A login UI from Figma (or any supported design tool)
    • ProtoPie Studio — free to start, everything in this tutorial works on the free plan
    • A Lottie file for the Face ID animation (this one is what we used)
    • The finished Pie Bank prototype file — download it to follow alongside, or use it as a reference after you build

    Step 1: Import From Figma Choose Scene, Not Flattened

    In Figma, open the ProtoPie plugin with your login frame selected and choose Scene when exporting. Flattened collapses everything into a single image; Scene preserves your layer hierarchy so every element arrives in ProtoPie as a separate, targetable layer.

    Before moving on: rename every layer meaningfully. “Input Username” not “Rectangle 14”. You’ll reference these names in formulas: vague names compound into real time lost.

    Step 2: Swap Static Fields For Inputs That Actually Accept Text

    ProtoPie’s native Input layer accepts real keyboard entry: participants type actual text, not tap a placeholder. Go to Text  → Input, drag an Input layer onto your canvas, and nest it inside your username field group. Match it visually: placeholder text Username, background fill and font to match your design.

    Hit preview. Click the field. Type. That’s the prototype starting to behave like an app rather than depicting one.

    Rename this layer Input Username, duplicate it, and nest the copy inside your password field group.

    Step 3: One Property Change Masks The Password

    On the duplicated layer, change placeholder text to Password and set Type to Text Password. ProtoPie handles the masking: no custom logic needed.

    Preview both fields: username shows text, password shows dots. It already feels real, and you haven’t written a single condition.

    (Image credit: ) (Large preview)

    Step 4: Build The Destination Scene Before Wiring Navigation

    Add a new scene, even a blank one. The most common sequencing mistake in ProtoPie is trying to wire a navigation response before a destination exists. Create it first.

    Step 5: Wire The Button: It Works, But It Still Lets Everyone Through

    Select Log In, add a Tap trigger, set response to Jump, target your dashboard scene, transition Slide in from right to left.

    Preview and tap. It navigates: but for any input, including nothing. The prototype is still lying. The next two steps are the fix.

    Step 6: Add Variables So The Prototype Remembers What Was Typed

    At the bottom-left of ProtoPie, add two Text type variables: username and password. Bind each to its input layer with a formula:

    input("Input Username").text
    input("Input Password").text
    

    Enable the debug icons: green overlays will show live variable values as you type. When you see your keystrokes appear in real time, the binding is confirmed.

    (Image credit: ) (Large preview)

    Step 7: Add A Condition So Only Valid Credentials Get Through

    Go back to the Tap trigger on the login button. Add a Condition with two rules, both must be true:

    • username equals alex.c@gmail.com
    • password equals ABC123

    Move the Jump response inside this condition. Wrong credentials, empty fields, wrong format: none get through. Participants now have to actually log in. That single constraint changes the texture of every test session that follows.

    Step 8: Build The Error State, The Interaction Most Prototypes Skip

    Find your error message layer, rename it Error Text, set initial opacity to 0. Add a second condition (the inverse of the first), and inside it, a Change Property response setting Error Text opacity to 100.

    Wrong credentials: error appears. Correct credentials: dashboard. Two outcomes: which is what makes this testable, not just demonstrable.

    Step 9: Add the Face ID Animation, The Detail That Makes Testers Ask “Is This Real”

    Go to Media, drag a Lottie layer onto canvas, load your Face ID file, and position it off-screen above the iPhone frame. On your Login with Face ID button, add a Tap trigger (rename it Tap Face ID) with four responses in sequence:

    • Move: Lottie container to Y: 60
    • Playback: Seek: time 0s (resets so it always plays from the start)
    • Playback: Play: Lottie file
    • Jump: to dashboard

    Step 10: Stagger The Timing, This Is What Makes It Feel Native

    Without delays, all four responses fire at once and the scene jumps before the animation plays. Add offsets:

    Response Delay
    Move 0s
    Seek 0s
    Play 0.5s
    Jump 1s

    Enable Reset selected scenes on Jump: without it, navigating back leaves the animation stuck at Y: 60.

    Preview: tap Face ID, animation drops in, plays, screen transitions. A biometric login indistinguishable from the real thing.

    You can download Pie Bank, Chapter 1: Login Flow and explore it freely.

    A Login This Real Changes What You Can Learn From Your Prototype

    When authentication actually works, the error state becomes a genuine research touchpoint: do users understand the message, do they retry, do they reach for Face ID instead? These are questions a faked login can’t answer.

    In stakeholder reviews, the flow speaks for itself. In engineering handoff, the interaction panel documents the behavior (conditional logic, variable bindings, timing) so engineers see intent, not interpretation.

    This is why FinTech teams invest in login fidelity even when the login isn’t the feature being tested. It’s where participant trust is established. Get it right, and everything downstream produces better signal.


    This tutorial is part of the FinTech Prototyping with ProtoPie series on the ProtoPie blog. The series builds Pie Bank from the ground up across four chapters, covering the dashboard, money transfer logic, and camera integration. If this tutorial was useful, the rest of the series goes further.

    Smashing Editorial
    (mnj, il)
    fix heres Honest Magazine Prototype Smashing users
    Elan
    • Website

    Related Posts

    Fake Tomodachi Life apps are popping up like weeds on the Google Play Store

    May 25, 2026

    Researcher Claims Trump Mobile Website Leaked Data on More Than 27,000 Customers Through Unprotected API

    May 24, 2026

    This PS5 Pro feature is so good, I regret buying a high-end PC

    May 23, 2026
    Leave A Reply Cancel Reply

    Economy News
    Crypto

    Rach Finance wants Africans to spend cash like crypto

    By ElanMay 26, 20260

    In December 2023, Keji Pius was stranded in Lusaka, Zambia, with a crypto wallet full…

    How Assexmarkets is Rewriting the Rules of Retail Trading for African Traders

    May 26, 2026

    Your Prototype Is Not Being Honest With Your Users (And Here’s How To Fix It) — Smashing Magazine

    May 26, 2026
    Top Trending
    Crypto

    Rach Finance wants Africans to spend cash like crypto

    By ElanMay 26, 20260

    In December 2023, Keji Pius was stranded in Lusaka, Zambia, with a…

    Tech

    How Assexmarkets is Rewriting the Rules of Retail Trading for African Traders

    By ElanMay 26, 20260

    For years, the average African retail trader has had to make peace…

    Tools

    Your Prototype Is Not Being Honest With Your Users (And Here’s How To Fix It) — Smashing Magazine

    By ElanMay 26, 20260

    There’s a moment in almost every usability session where a participant pauses…

    Your source for comprehensive insights on Africa’s private credit markets, InclusiFund synthesizes deal pipelines, repayment patterns, collateral trends, and sector-level signals to guide investors in underwriting and structuring credit in emerging African markets.

    We're social. Connect with us:

    our Categories
    • Work With Us
    • Advertise With Us
    • Contact Us
    • Disclaimer
    • Privacy Policy
    • Terms and Conditions

    Subscribe to Updates

    Get the latest creative news from FooBar about art, design and business.

    Facebook X (Twitter) Instagram Pinterest
    • Work With Us
    • Advertise With Us
    • Contact Us
    • Disclaimer
    • Privacy Policy
    • Terms and Conditions
    © 2025 Inclusifund. All Rights Reserved.

    Type above and press Enter to search. Press Esc to cancel.