Generate a complete mobile app wireframe specification with screen flows, component library, interaction patterns, and developer handoff notes.
This study plan is designed to guide you through the process of mastering mobile app wireframing, from foundational UX principles to creating comprehensive wireframe specifications, interactive prototypes, and developer-ready documentation. By the end of this 4-week program, you will possess the skills and a tangible portfolio piece to showcase your expertise.
To equip you with the knowledge and practical skills required to design, document, and deliver comprehensive mobile app wireframe specifications. This includes creating detailed user flows, building a reusable component library, defining interaction patterns, and preparing clear developer handoff documentation.
Target Audience: Aspiring UX/UI designers, product managers, developers looking to understand the design process, or anyone seeking to build a strong foundation in mobile app wireframing.
Duration: 4 Weeks
This week focuses on understanding the core concepts of wireframing and the fundamental principles of user experience design specific to mobile applications.
* Understand the purpose and importance of wireframes in the product development lifecycle.
* Differentiate between low-fidelity, mid-fidelity, and high-fidelity wireframes/prototypes.
* Grasp fundamental UX principles (usability, accessibility, learnability, efficiency).
* Learn to create basic user flows and information architecture diagrams.
* Become familiar with the chosen design tool (Figma basics).
* Day 1-2: Introduction to Wireframing & Design Thinking
* What are wireframes? Why are they crucial in product development?
* Overview of the Design Thinking process (Empathize, Define, Ideate, Prototype, Test).
* Understanding different fidelity levels: Sketching, Wireframes, Mockups, Prototypes.
* Day 3-4: Core UX Principles & Mobile Design Guidelines
* Explore Nielsen's 10 Usability Heuristics and their application.
* Introduction to basic Accessibility principles (e.g., contrast, font size, touch targets).
* Understanding user needs, problem statements, and user stories.
* Overview of mobile platform guidelines: iOS Human Interface Guidelines and Android Material Design.
* Day 5-6: Information Architecture & User Flows
* Learn to create sitemaps and app maps to define structure.
* Practice mapping user journeys and task flows for common app scenarios.
* Figma Introduction: Familiarize yourself with the workspace, frames, basic shapes, text, and layer management.
* Practical Task: Sketch a simple 3-5 screen user flow for a common app feature (e.g., user login/signup, adding an item to a cart). Translate one of these screens into a low
This deliverable provides a comprehensive mobile app wireframe specification for "Chef's Companion," a recipe management application. This specification is presented in a structured, machine-readable JSON format, serving as a blueprint for the user interface, user flows, and interaction logic. It includes detailed screen flows, a reusable component library, defined interaction patterns, and crucial developer handoff notes to ensure a smooth transition to the development phase.
The output adheres to the generate_code step by providing a structured JSON output that can be directly consumed by development teams or design tools for further elaboration. Explanations for each section are provided both in the markdown text and within the JSON structure via _comment fields.
App Name: Chef's Companion
App Description: A mobile application designed to help users discover, manage, and share recipes. It aims to provide an intuitive interface for browsing, searching, and organizing culinary inspirations.
Version: 1.0.0-wireframe
Date Generated: 2023-10-27
This specification outlines the foundational structure and behavior of the Chef's Companion mobile application. It details the user journey through various screens, defines reusable UI components, specifies how users will interact with the app, and provides essential guidelines for developers.
The following JSON object encapsulates the entire wireframe specification. Each top-level key corresponds to a major section of the specification, as detailed below.
{
"_comment": "Chef's Companion Mobile App Wireframe Specification - Generated Code",
"app_name": "Chef's Companion",
"app_description": "A mobile application for discovering, managing, and sharing recipes, providing an intuitive interface for browsing, searching, and organizing culinary inspirations.",
"version": "1.0.0-wireframe",
"date_generated": "2023-10-27",
"wireframe_specification": {
"_comment": "This section contains the core wireframe details: screen flows, component library, interaction patterns, and developer handoff notes.",
"screen_flows": [
{
"_comment": "SCR001: Splash Screen - Initial app launch screen.",
"id": "SCR001_Splash",
"name": "Splash Screen",
"description": "Displays the app logo and branding. Automatically transitions to Onboarding for new users or Home for logged-in users.",
"ui_elements": [
{"type": "Image", "id": "IMG001_AppLogo", "description": "Chef's Companion logo"},
{"type": "Text", "id": "TXT001_AppName", "content": "Chef's Companion", "style": "H1"}
],
"navigation_paths": [
{
"trigger": "Automatic after 2 seconds",
"target_screen_id": "SCR002_Onboarding",
"condition": "First launch or user not logged in",
"effect": "Fade out, fade in"
},
{
"trigger": "Automatic after 2 seconds",
"target_screen_id": "SCR004_HomeFeed",
"condition": "User already logged in",
"effect": "Fade out, fade in"
}
]
},
{
"_comment": "SCR002: Onboarding Screen - Introduces app features to new users.",
"id": "SCR002_Onboarding",
"name": "Onboarding Screen",
"description": "A series of introductory slides highlighting key app features. Ends with a 'Get Started' button.",
"ui_elements": [
{"type": "Carousel", "id": "CAR001_OnboardingSlides", "items": [
{"image": "onboarding_1.png", "title": "Discover New Recipes", "description": "Explore a world of culinary delights."},
{"image": "onboarding_2.png", "title": "Organize Your Favorites", "description": "Save and categorize your must-try dishes."},
{"image": "onboarding_3.png", "title": "Share Your Creations", "description": "Inspire others with your unique recipes."}
]},
{"type": "Button", "id": "BTN001_GetStarted", "component_id": "COMP001_PrimaryButton", "text": "Get Started"}
],
"navigation_paths": [
{
"trigger": "Tap on BTN001_GetStarted",
"target_screen_id": "SCR003_Auth",
"effect": "Slide left"
}
]
},
{
"_comment": "SCR003: Authentication Screen - Login or Signup.",
"id": "SCR003_Auth",
"name": "Authentication Screen",
"description": "Allows users to log in with existing accounts or create new ones, including social login options.",
"ui_elements": [
{"type": "Text", "id": "TXT002_Welcome", "content": "Welcome to Chef's Companion", "style": "H2"},
{"type": "Input", "id": "INP001_Email", "component_id": "COMP002_InputField", "placeholder": "Email Address", "keyboard_type": "email-address"},
{"type": "Input", "id": "INP002_Password", "component_id": "COMP002_InputField", "placeholder": "Password", "secure_text_entry": true},
{"type": "Button", "id": "BTN002_Login", "component_id": "COMP001_PrimaryButton", "text": "Log In"},
{"type": "TextLink", "id": "LNK001_ForgotPassword", "content": "Forgot Password?", "target_screen_id": "SCR_ForgotPassword"},
{"type": "Divider", "id": "DIV001_Or", "content": "OR"},
{"type": "Button", "id": "BTN003_GoogleLogin", "component_id": "COMP003_SocialButton", "icon": "google", "text": "Continue with Google"},
{"type": "Button", "id": "BTN004_AppleLogin", "component_id": "COMP003_SocialButton", "icon": "apple", "text": "Continue with Apple"},
{"type": "TextLink", "id": "LNK002_SignUp", "content": "Don't have an account? Sign Up", "target_screen_id": "SCR_SignUp"}
],
"navigation_paths": [
{
"trigger": "Tap on BTN002_Login (successful)",
"target_screen_id": "SCR004_HomeFeed",
"effect": "Replace stack"
},
{
"trigger": "Tap on BTN003_GoogleLogin (successful)",
"target_screen_id": "SCR004_HomeFeed",
"effect": "Replace stack"
},
{
"trigger": "Tap on LNK002_SignUp",
"target_screen_id": "SCR_SignUp",
"effect": "Slide left"
}
]
},
{
"_comment": "SCR004: Home
This document serves as the complete mobile app wireframe specification, detailing the user experience, interaction patterns, component library, and developer handoff notes for your upcoming mobile application. It is designed to provide a clear blueprint for development, ensuring alignment across design, product, and engineering teams.
This deliverable provides a foundational design specification for your mobile application, focusing on core user flows and key screen layouts. It encompasses a detailed breakdown of user journeys, a comprehensive component library, defined interaction patterns, and essential notes for seamless developer handoff. The goal is to establish a clear, consistent, and actionable framework for the app's structure and user interaction before visual design and development commence.
The wireframes outlined in this specification are designed to achieve the following high-level objectives:
This section details the purpose, scope, and target audience for this wireframe specification.
This specification covers:
This document does not include: visual design (colors, typography, imagery), animations beyond basic transitions, or detailed technical architecture.
This document is intended for:
This section outlines the primary user flows within the application, detailing the sequence of screens and key actions. Each flow is designed to achieve a specific user goal.
1. Welcome/Splash Screen: App logo, brief tagline.
2. Onboarding Carousel (3-5 screens):
* Screen 1: "Discover [App Benefit 1]" with illustration.
* Screen 2: "Organize [App Benefit 2]" with illustration.
* Screen 3: "Connect [App Benefit 3]" with illustration.
Call to Action:* "Get Started" button, "Skip" (optional).
3. Sign Up/Login Choice Screen:
* Options: "Sign Up with Email," "Continue with Google," "Continue with Apple," "Already have an account? Log In."
4. Sign Up (Email) Screen:
* Input Fields: Full Name, Email Address, Password (with "Show/Hide" toggle), Confirm Password.
* Checkbox: "I agree to the Terms of Service and Privacy Policy." (with links).
* Button: "Create Account."
5. Verification Screen (Optional):
* Message: "Check your email for a verification link."
* Input Field: OTP/Code (if email verification is in-app).
* Button: "Verify," "Resend Code."
6. Profile Setup (Optional):
* Fields: Profile Picture upload, Username, Bio (optional).
* Button: "Continue," "Skip for now."
7. Permissions Request (Optional):
* Pop-ups for Push Notifications, Location, Camera, etc. (system-level prompts).
* Button: "Allow," "Deny."
8. Home Screen: User lands on the main dashboard/feed.
1. Welcome/Splash Screen.
2. Sign Up/Login Choice Screen (user selects "Log In").
3. Login Screen:
* Input Fields: Email Address, Password (with "Show/Hide" toggle).
* Link: "Forgot Password?".
* Button: "Log In."
* Divider: "Or log in with."
* Buttons: "Continue with Google," "Continue with Apple."
4. Home Screen.
1. Home Screen: User taps "Add New" (+) button in navigation bar/FAB.
2. Create New Screen:
* Input Field: Title (single line).
* Input Field: Description (multi-line textarea).
* Options: Add Image/Video (icon button), Add Tag (chip input), Set Due Date/Time (date/time picker), Assign To (user picker).
* Button: "Publish/Save."
* Button: "Cancel."
3. Confirmation/Success Message: Toast or brief overlay indicating success.
4. Home Screen (with new content displayed).
1. Home Screen: User taps "Profile" icon in bottom navigation or menu.
2. Profile View Screen:
* Display: Profile Picture, Username, Bio, Stats (e.g., "Posts: 10," "Followers: 100").
* Buttons: "Edit Profile," "Settings," "Logout."
* Sections: User's posts/activities feed.
3. Edit Profile Screen:
* Input Fields: Name, Username, Bio.
* Action: "Change Profile Picture" (opens camera/gallery).
* Button: "Save Changes."
* Button: "Cancel."
4. Settings Screen:
* List Items: Account Settings, Notification Preferences, Privacy Settings, Help & Support, About App.
* Toggle: Dark Mode.
* Button: "Log Out."
This section outlines the reusable UI components that form the building blocks of the application. For each component, typical states and usage guidelines are provided.
* Elements: App Logo/Title, Back Button, Menu Icon (Hamburger), Action Icons (e.g., Search, Notifications).
* States: Default, Scrolled (can shrink or change background), Contextual (e.g., "Edit" mode with different actions).
* Elements: 3-5 primary navigation icons with optional text labels.
* States: Default, Selected (highlighted icon/text), Inactive.
* Usage: Primary action (e.g., "Create New," "Add").
* States: Default, Pressed, Disabled, Expanded (if it reveals sub-actions).
* Elements: User profile summary, list of secondary navigation links, settings, logout.
* Usage: Accessed via hamburger icon in top app bar.
* Elements: Label, Placeholder text, Input area, Optional helper text/error message.
* States: Default, Focused, Filled, Error (red border/text), Disabled.
* Variations: Single-line, Multi-line (Textarea), Password (with toggle for visibility).
* Elements: Search icon, Placeholder text, Input area, Clear button (X).
* States: Default, Focused (keyboard active), With results, No results.
* Elements: Label, Display value, Down arrow icon.
* States: Default, Active (opens selection list/native picker), Disabled.
* Elements: Square box, Label text.
* States: Unchecked, Checked, Indeterminate, Disabled (checked/unchecked).
* Elements: Circular button, Label text.
* States: Unselected, Selected, Disabled (selected/unselected).
* Elements: Switch control, Label text.
* States: Off, On, Disabled (off/on).
* Usage: Select dates or times, typically invokes native OS picker.
* Usage: Main call to action on a screen.
* States: Default, Pressed, Hover (web-only, but consider visual feedback), Disabled.
* Usage: Less prominent actions, often paired with a primary button.
* States: Default, Pressed, Disabled.
* Usage: Low-emphasis actions, typically within a sentence or alongside other content.
* States: Default, Pressed, Disabled.
* Usage: Actions represented solely by an icon (e.g., "Delete," "Share," "Edit").
* States: Default, Pressed, Disabled.
* Usage: Grouping related information into a digestible block.
* Elements: Image (optional), Title, Subtitle, Body text, Action buttons/links.
* Usage: Displaying a series of items (e.g., settings, feed items).
* Elements: Leading icon/image, Primary text, Secondary text, Trailing icon/action.
* Variations: Simple, Two-line, Three-line, Divider lines.
* Usage: Representing users or entities.
* Variations: Circular, Square; various sizes.
* Usage: Small, informative labels (e.g., categories, status).
* States: Default, Interactive (tappable), Dismissible (with 'X' icon).
* Usage: Show loading status.
* Variations: Linear (progress bar), Circular (spinner).
* Usage: Brief, non-intrusive messages (e.g., "Item saved successfully").
* Elements: Message text, Optional action button ("Undo").
* Behavior: Appears temporarily, disappears automatically.
* Usage: Critical information, requires user action (e.g., "Confirm Delete").
* Elements: Title, Message, Action Buttons (e.g., "Cancel," "OK").
* Behavior: Modal, blocks interaction with background.
This section defines the standard ways users will interact with the application and its components.
* Horizontal: Used for tab navigation, image carousels, or dismissing items (e.g., swipe to delete a list item).
* Vertical (Pull-to-Refresh): Pulling down on a scrollable view refres
\n