Stand Mobile Script — Flames Hub Sakura
The platform, launched in 2023, provides a flame‑event stream (a lightweight JSON payload describing a user‑generated spark) to millions of mobile users worldwide. Early UI iterations used a minimalist red‑orange gradient, which performed well but lacked cultural resonance in markets such as Japan, South Korea, and Taiwan.
// --------------------------------------------------------------------- // 2️⃣ Reactive UI state – mutable container on UI thread // --------------------------------------------------------------------- export const viewState = makeMutable<ViewState>(initState); Flames Hub Sakura Stand Mobile Script
export const startSakuraStand = () => // Subscribe to flame events subscription = apollo .subscribe( query: gql` subscription FlameStream flameStream id intensity timestamp user id avatarUrl `, ) .subscribe( next: ( data ) => dispatch( type: IntentType.NewFlame, payload: data.flameStream ), error: (err) => console.error('[Sakura] subscription error', err), ); The platform, launched in 2023, provides a flame‑event