Devlog #10
Worked on the final mission report screen and the share popup polish.
I improved the result screen spacing, pushed the score section lower for a cleaner layout, and added clearer stat colors so correct answers stand out in green and wrong answers in red. I also added the share popup to the main end-screen.
Copy function in the Share Pop-Up
const shareText = getShareText();
try {
await navigator.clipboard.writeText(shareText);
clearTimeout(copyButtonResetTimer);
copyShareButton.classList.add("copied");
copyButtonResetTimer = setTimeout(() => {
copyShareButton.classList.remove("copied");
}, 1200);
} catch {}
}
Comments 0
No comments yet. Be the first!
Sign in to join the conversation.