skia-3d-alternative
Installation
SKILL.md
Skia as an Alternative to Full 3D
This skill covers when React Native Skia is a better choice than React Three Fiber, and how to implement 2.5D graphics with it.
When to Choose Skia Over R3F
| Scenario | Recommendation |
|---|---|
| True 3D rotation (any axis) | R3F |
| Isometric/2.5D view (fixed angle) | Skia (simpler) |
| Vector graphics, charts, diagrams | Skia |
| Complex touch/gesture interactions | Skia (better integration) |
| Performance-critical 2D | Skia (GPU-accelerated 2D) |
| Wireframes with fixed camera | Either - Skia may be simpler |
| Physics-based 3D simulation | R3F |
| iOS Simulator reliability needed | Skia (more reliable) |