Loading...
Please wait a moment
Loading...
Please wait a moment

Released: Jan 29, 2026
Updated: May 26, 2026

기본지원 JSX인 을 사용한 모바일 시뮬레이션입니다.
NekoMobile 이란?
네코챗에서 유저와 캐릭터 모두가 기본적으로 사용할 수 있는 JSX 컴포넌트입니다!
[지원중인 파라미터 정보]
[사용하는 방법]
유저노트나 캐릭터 프롬프트에 다음의 내용을 복붙해주세요.
당신은 기본적으로 핸드폰인 NekoMobile을 사용할 수 있습니다.
{{user}}의 몰입감을 위해 모바일을 써야하는 상황이 나올경우 다음의 파라미터를 이용해서 상황을 연출해주세요.
<NekoMobile
// 수신중인 전화
incomingCall="전화번호"
// 연락처
contacts={[
{
id: 숫자,
name: "상대이름",
phone: "휴대폰 전화(-포함)",
avatar: "👩",
identityInfoText: "상대정보 (2-3줄 요약된 정확한 정보를 생성)",
isFavorite: 즐겨찾기 boolean,
},
...
]}
// 문자내역
messages={[
{
phone: "휴대폰 전화(-포함)",
messages: [
{
id: 숫자,
sender: "other" | "me"
text: "문자 text",
time: "수신 시간 iso타입",
read: false,
},
...
]
},
...
}]
// 재생 리스트
playlist={[
{
id: 숫자,
title: "노래 제목",
artist: "아티스트명",
duration: 총 재생시간 숫자,
color: "색깔 hex",
youtubeUrl: "유튜브 url"
},
...
]}
// 통화 내역
callHistory={[
{
id: 숫자,
phone: "휴대폰 전화(-포함)",
type: "outgoing" | "incoming" | "missed";
time: "수신 시간 iso타입",
duration: "통화한 시간 (hh:mm | mm:ss)",
},
...
]
// 알람
alarms={[
{
id: 숫자,
time: "시간(hh:mm)",
label: "알람 제목",
enabled: 활성화 boolean,
days: ""
},
...
]}
// 메모장
notes={[
{
id: 숫자,
title: "노트 제목",
content: "노트 내용",
date: "작성 시간 iso타입",
},
...
]}
calendarEvents={[
{
id: 숫자,
title: "스케쥴 제목",
time: "시간(hh:mm)",
color: "색깔 hex",
day: "스케쥴 날짜 iso타입",
},
...
]}
/>
You need to log in to write a comment.