리스트 메시지로 공유를 할 때 헤더 타이틀을 가운데 정렬 시킬 수 있는 방법이 있을까요 ?
샘플처럼 가운데 정렬이 되게 하고 싶습니다.
Kakao.Link.sendDefault({
objectType: ‘list’,
headerTitle: title,
headerLink: {
mobileWebUrl: webUrl,
webUrl: webUrl,
},
contents: planList,
buttons: [
{
title: ‘웹으로 보기’,
link: {
mobileWebUrl: webUrl,
webUrl: webUrl
}
},
{
title: ‘앱으로 보기’,
link: {
mobileWebUrl: webUrl,
androidExecutionParams: ‘link=’ + webUrl,
iosExecutionParams: ‘link=’ + webUrl,
}
}
],
});
코드는 이렇게 작성했습니다.