Lewati ke konten
Buat akun
atau
Masuk
Logo Dokumen Stripe
/
Tanya AI
Buat akun
Masuk
Mulai
Pembayaran
Pendapatan
Platform dan situs belanja online
Manajemen uang
Sumber daya pengembang
Gambaran Umum
Pembuatan versi
Log perubahan
Tingkatkan versi API Anda
Upgrade versi SDK Anda
Essentials
SDK
API
Pengujian
Stripe CLI
Proyek sampel
Alat
Workbench
Dashboard Pengembang
Stripe Shell
Stripe untuk Visual Studio Code
Fitur
Alur kerja
Tujuan Kejadian
Peringatan kesehatan StripePengunggahan file
Solusi AI
Toolkit agen
Model Context Protocol
Keamanan dan privasi
Keamanan
Privasi
Perluas Stripe
Build Stripe apps
    Gambaran umum
    Mulai
    Buat aplikasi
    Cara kerja Stripe Apps
    Aplikasi sampel
    Bangun aplikasi
    Simpan rahasia
    Metode autentikasi API
    Alur otorisasi
    Logika sisi server
    Dengarkan kejadian
    Tangani berbagai mode
    Aktifkan dukungan sandbox
    Halaman pengaturan aplikasi
    Bangun UI
    Onboarding
    Distribusikan aplikasi Anda
    Opsi distribusi
    Unggah aplikasi Anda
    Versi dan rilis
    Coba aplikasi Anda
    Publikasikan aplikasi Anda
    Promosikan aplikasi Anda
    Tambahkan deep link
    Buat tautan instal
    Tetapkan peran dalam ekstensi UI
    Tindakan setelah instalasi
    Analisis aplikasi
    Komponen tersemat
    Sematkan Aplikasi Stripe pihak ketiga
    Bermigrasi ke Stripe Apps
    Migrasikan atau buat ekstensi
    Migrasikan plugin ke aplikasi Stripe atau Stripe Connect
    Referensi
    Manifes aplikasi
    CLI
    SDK ekstensi
    Izin
    Viewport
    Pola desain
      Tombol tindakan
      Alur aktivasi
      Konteks tambahan
      Tautan balik
      Mengkomunikasikan status
      Konten demo
      Status kosong
      Daftar
      Memuat
      Langkah kemajuan
      Pengalihan
      Masuk pengaturan
      Templat masuk
      Keluar
      Layar tunggu
    Komponen
Use apps from Stripe
Mitra
Ekosistem mitra
Sertifikasi mitra
BerandaSumber daya pengembangBuild Stripe appsDesign patterns

Waiting screens for Stripe Apps

Learn how to use the waiting screen.

Keep users informed throughout the entire onboarding process and set clear expectations of wait times and next steps with waiting screens.

Sebelum Anda memulai

Create an app.

Suggested use

  • If users navigate back to Stripe during the onboarding flow, keep them informed about what’s happening. For example:
A screen with a step to complete, supporting context, an action to complete, and affordance to start over
  • Only add a call-to-action if it leads users to the next step of the onboarding process, or to provide additional context they need to complete in the next step.
  • Keep language clear and concise. Avoid providing more context than what users might actually require. For example:
A screen that prompts users to complete an application or start over
  • If you must take users outside of Stripe to connect to your account (not recommended), use a waiting screen that clearly communicates this transition. For example:
A screen that prompts users to finish onboarding or start over

Example

The following sample shows a waiting screen built in a ContextView component:

import { Box, Button, ContextView, Icon, Inline, Link, } from "@stripe/ui-extension-sdk/ui"; const WaitingScreen = () => { return ( <ContextView title="Finish onboarding" footerContent={ <Box> <Button type="primary" css={{ width: "fill" }}> Finish onboarding </Button> <Box css={{ marginTop: "small", textAlign: "center", stack: "x", alignX: "center", gap: "small", }} > <Box>Want to go back?</Box> <Link>Start over.</Link> </Box> </Box> } > <Box css={{ marginBottom: "xlarge" }}> <Inline css={{ backgroundColor: "container", keyline: "neutral", borderRadius: "small", paddingX: "small", paddingTop: "small", paddingBottom: "xsmall", }} > <Icon name="clock" css={{ fill: "secondary" }} /> </Inline> </Box> <Box>Please finish onboarding to SuperTodo.</Box> </ContextView> ); };
Apakah halaman ini membantu?
YaTidak
  • Butuh bantuan? Hubungi Tim CS.
  • Bergabunglah dengan program akses awal kami.
  • Lihat log perubahan kami.
  • Ada pertanyaan? Hubungi Bagian Penjualan.
  • LLM? Baca llms.txt.
  • Dijalankan oleh Markdoc