Build: Recomposition Demo Screen
This screen demonstrates the recomposition concept in Jetpack Compose by updating a counter value when a button is clicked.
Target UI
------------------------- | Recomposition Demo | |-----------------------| | Count: 0 | | | | [Increase Count] | -------------------------
Display a text showing the current count starting at 0.
Add a button labeled 'Increase Count'.
When the button is clicked, increase the count by 1 and update the displayed count.
Use Jetpack Compose state to trigger recomposition.