一键导入
skeleton-ui-standards
Guidelines for styling and transitioning from shimmer-ready skeleton placeholders
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Guidelines for styling and transitioning from shimmer-ready skeleton placeholders
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Guidelines for managing Varisankya releases across Beta and Production tracks.
How to safely record extra payments without advancing the Varisankya subscription next due date.
Instructions for extracting the Play Store upload keystore, Firebase JSON, and passwords from Bitwarden.
Standard operating procedure for concluding an AI agent session and ensuring workspace integrity.
Guidelines for compiling Varisankya from the CLI without Android Studio.
How to correctly handle custom dates for extra subscription payments using MaterialDatePicker.
| name | Skeleton UI Standards |
| description | Guidelines for styling and transitioning from shimmer-ready skeleton placeholders |
To maintain an "Ultra Smooth" loading experience, all data-driven screens must implement a skeleton UI that mimics the final content structure.
?attr/colorSurfaceContainerHigh or ?attr/colorSurfaceContainerHighest for the skeleton blocks to distinguish them while maintaining a flat M3 aesthetic.Create a composite layout (e.g., layout_home_skeleton.xml) that includes multiple item skeletons:
<LinearLayout ...>
<include layout="@layout/item_skeleton_hero" />
<include layout="@layout/item_skeleton_subscription" />
</LinearLayout>
Use AnimationHelper.animateReveal and a subtle haptic to bridge the gap between "Loading" and "Ready":
if (loadingSkeleton.visibility == View.VISIBLE) {
loadingSkeleton.visibility = View.GONE
mainContentWrapper.visibility = View.VISIBLE
AnimationHelper.animateReveal(mainContentWrapper)
PreferenceHelper.performClickHaptic(mainContentWrapper)
}
EMPHASIZED (M3 Standard)performClickHaptic or SEGMENT_TICK