I'm trying to pass data between two different screens
Here is the data:
const [arrange, setArrange] = useState(false); // the clubs arrange state
The state is updating the home screen and arranging it differently based on the 'arrange' value (if true, one way, if false another).I want to update the arrange
value on the second screen and send it back to the home screen and see the change.