Tic Tac Toe
- An Android app that implements the classic game of Tic Tac Toe.
- Built using
Jetpack Compose
, a modern UI toolkit for building native Android apps. - Features a
3x3
game board where two players take turns markingX
andO
symbols. - Includes a home screen with a “Play” button to start the game and a game board screen for gameplay.
- Tracks the game state, determines the winner, and provides a reset option to start a new game.
- UI elements styled using the
Material3
library. - Code organized using the
MVVM
architecture pattern with aViewModel
managing the game logic. LiveData
used to observe and update the game state.