Google's Stitch: Gemini-powered tool turns prompts and images into UI designs and frontend code

Google's Stitch: Gemini-powered tool turns prompts and images into UI designs and frontend code
source: gettyimages
March 18, 2026

Google has introduced Stitch, an experimental design assistant housed on Google Labs and powered by the Gemini 2.5 Pro model. The tool aims to rapidly convert text prompts and reference images into complex user interfaces along with ready-to-use frontend code, potentially delivering finished designs in minutes. The announcement position Stitch as a bridge from rough ideas to production-ready UI elements, reducing the need for manual design work and hand-coding.

Key capabilities and workflow

Integration with existing design tools

Availability and scope

If you’d like, I can tailor the tone to match a specific outlet or audience, or add more technical detail about potential integration workflows.

Related links

By submitting, I confirm I have the right to share this link and I agree to link back to this article from the submitted page. Duplicate URLs are rejected. Up to 5 links per page.

GraphQL · 317 ms
query Q($id: Int!, $domain: Int!, $srcId: Int!, $hasSrc: Boolean!, $hasSelf: Boolean!) {
  self: qa_ai(where: {id: {_eq: $id}}, limit: 1) @include(if: $hasSelf) {
    id
    title
    text
    date
  }
  linksarticle: qa_ai(where: {domain: {_eq: $domain}, id: {_neq: $id}}, order_by: {id: desc}, limit: 8) {
    id
    title
  }
  linksbottom: qa_ai(where: {domain: {_neq: $domain}, id: {_lt: $id}}, order_by: {id: desc}, limit: 3) {
    id
    title
    domain
  }
  source: qa_ai(where: {id: {_eq: $srcId}}, limit: 1) @include(if: $hasSrc) {
    id
    title
  }
}
{
  "id": 6646687,
  "domain": 6,
  "srcId": 0,
  "hasSrc": false,
  "hasSelf": true
}