Mobile ionic gesture scroll
A curated library of 124 AI agent skills organized into 10 categories, with model-specific versions for Claude, GPT-5.5, GPT-5.4 and earlier, GLM, and DeepSeek.
npx -y skills add mhrsdev/AI-Agent-Skills-Library --skill mobile-ionic-gesture-scrollAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Use when debugging real mobile gesture, scroll, menu, modal, content, and safe-area bugs inspired by Ionic mobile app and website patterns.
SKILL.md
1.4 KB, as published. Nobody here has run it
Mobile Ionic Gesture Scroll
Use this skill for mobile-realistic menu, modal, gesture, scroll, and safe-area behavior inspired by ionic-team/ionic-framework.
Primary source:
Focus areas:
- Menu/content coordination on touch devices.
- Modal and drawer scroll containment.
- Gesture conflicts between overlays, sliders, and page scroll.
- Safe-area insets on iOS devices.
- Hardware/browser differences between iOS Safari and Android Chrome.
Checklist:
- Decide which surface owns the gesture before calling
preventDefault. - Use
touch-actionto declare expected browser behavior. - Keep overlays fixed to the viewport and panel content independently scrollable.
- Add
padding-bottom: env(safe-area-inset-bottom)where content reaches device edges. - Test nested scroll containers on real mobile dimensions.
Common fixes:
- If a modal traps scroll incorrectly, separate backdrop, panel, and scrollable content layers.
- If swipe navigation fights vertical page scroll, detect movement axis before intercepting.
- If bottom buttons are hidden by device UI, add safe-area-aware padding.