https://github.com/srcemre/androidcomposeplayground
Code exercises and animation experiments with Jetpack Compose.
https://github.com/srcemre/androidcomposeplayground
android code codechallenge jetpack-compose kotlin mobile-development
Last synced: 3 months ago
JSON representation
Code exercises and animation experiments with Jetpack Compose.
- Host: GitHub
- URL: https://github.com/srcemre/androidcomposeplayground
- Owner: srcemre
- Created: 2025-02-17T06:25:58.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2025-02-27T07:00:06.000Z (3 months ago)
- Last Synced: 2025-03-03T05:15:21.917Z (3 months ago)
- Topics: android, code, codechallenge, jetpack-compose, kotlin, mobile-development
- Language: Kotlin
- Homepage:
- Size: 106 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 🚀 Code Challenges
Small code exercises and animation experiments with Jetpack Compose.
1. [StarfieldAnimation](./app/src/main/java/com/emresarac/codechallanges/challanges/StarfieldSimulation.kt)
A starfield animation using Canvas and perspective projection!2. [Menger Sponge Fractal with OpenGL](./app/src/main/java/com/emresarac/codechallanges/challanges/MengerSpongeFractalOpenGL.kt)
A Menger Sponge fractal created by starting with a cube and iteratively removing smaller cubes from its faces. This 3D structure, rendered using OpenGL, showcases intricate geometric patterns.3. [Solar System Gravity Simulation](./app/src/main/java/com/emresarac/codechallanges/challanges/SolarSystemWithMutualGravitySimulation.kt)
A simple simulation of planets dancing around the Sun using Newton's law of gravitation and Jetpack Compose. a = G * M / r²