Completed
- Set up “ a tie” state
Class Central Classrooms beta
YouTube videos curated by Class Central.
Classroom Contents
Building Tic Tac Toe with React Native - Tutorial for Beginners
Automatically move to the next video in the Classroom when playback concludes
- 1 How to build a Tic Tac Toe game in React Native
- 2 - Download prerequisites for Tic Tac Toe game tutorial
- 3 - Initializing React Native Project
- 4 - Open Project with Visual Studio Code
- 5 - Run the development server with npm start
- 6 - Run the app on an iOs emulator
- 7 - Overview of your React Native project folders
- 8 - Adding assets and creating designs for “O” and “X”
- 9 - Create a map for the Tic Tac Toe game
- 10 - Define a data structure for a two-dimensional array
- 11 - How to handle onPress events in React Native
- 12 - Implement switching of the turns to play
- 13 - Set up the winning state
- 14 - Reset the game
- 15 - Set up “ a tie” state
- 16 - Indication of the players next turn
- 17 - Create a bot as a player
- 18 - Bot local, bot easy, bot medium
- 19 - Overview and ideas for implementation