Build: Counter Screen
A simple screen with a counter that increments when a button is pressed. This screen helps practice writing tests using React Native Testing Library.
Target UI
Counter Screen +---------------------+ | Count: 0 | | | | [ Increment ] | +---------------------+
Display the current count starting at 0
A button labeled 'Increment' that increases the count by 1 when pressed
Write a test that checks the initial count is 0
Write a test that simulates pressing the button and verifies the count increments