
implementation("com.ekezet.hurok:compose:2.3.0")Hurok is a framework for developing applications based on the unidirectional dataflow model. It consists of several components: - **Model**: Holds data for business logic. - **State**: UI state derived from the Model. - **Renderer**: Uses the Model to create State. - **Action**: Mutates the Model and can trigger Effects. - **Effect**: Performs background work and triggers Actions. - **Loop**: Renders Model into State and executes Actions and Effects. This architecture facilitates a clear and predictable flow of data and events within applications.