KvadrantFlipTile

fun KvadrantFlipTile(size: TileSize = TileSize.Medium, modifier: Modifier = Modifier, color: Color = KvadrantTheme.colors.accent, intervalMillis: Long = DEFAULT_FLIP_INTERVAL_MILLIS, jitter: Float = DEFAULT_FLIP_JITTER, seed: Int = 0, onClick: () -> Unit = {}, front: @Composable BoxScope.() -> Unit = {}, back: @Composable BoxScope.() -> Unit = {})

A tile that turns over between two faces.

The interval is ours and says so. Microsoft never specified the flip timing and deliberately never let applications control it — the platform used a random interval with a five-deep FIFO queue. So intervalMillis is this project's invention, and the ±25 % jitter matters more than the number: a grid of tiles flipping in lockstep is the tell of every reimplementation.