mirror of
https://github.com/smyalygames/vegan-e-numbers.git
synced 2025-05-18 13:24:12 +02:00
28 lines
612 B
Kotlin
28 lines
612 B
Kotlin
package io.anthonyberg.veganenumbers
|
|
|
|
import App
|
|
import android.os.Bundle
|
|
import androidx.activity.ComponentActivity
|
|
import androidx.activity.compose.setContent
|
|
import androidx.compose.runtime.Composable
|
|
import androidx.compose.ui.tooling.preview.Preview
|
|
import io.anthonyberg.veganenumbers.ui.theme.AppTheme
|
|
|
|
class MainActivity : ComponentActivity() {
|
|
override fun onCreate(savedInstanceState: Bundle?) {
|
|
super.onCreate(savedInstanceState)
|
|
|
|
setContent {
|
|
AppTheme {
|
|
App()
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
@Preview
|
|
@Composable
|
|
fun AppAndroidPreview() {
|
|
App()
|
|
}
|