Skip to content

Instantly share code, notes, and snippets.

View Wb11G's full-sized avatar
🐱

Wahyu Abdul Rahmat Wb11G

🐱
  • PT. Fastrata Buana
  • Indoensia
View GitHub Profile
@ardakazanci
ardakazanci / TicTacToe.kt
Created January 8, 2024 16:49
Tic Tac Toe - Jetpack Compose
class MainActivity : ComponentActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
enableEdgeToEdge()
setContent {
TicTacToeGameTheme {
TicTacToeGame()
}
}
}