2026-03-23 01:41:39 +02:00
|
|
|
package ac.aux.compose
|
|
|
|
|
|
|
|
|
|
import android.os.Bundle
|
|
|
|
|
import androidx.activity.ComponentActivity
|
|
|
|
|
import androidx.activity.compose.setContent
|
|
|
|
|
import androidx.activity.enableEdgeToEdge
|
|
|
|
|
import androidx.compose.runtime.Composable
|
|
|
|
|
import androidx.compose.ui.tooling.preview.Preview
|
2026-03-23 02:21:18 +02:00
|
|
|
import androidx.navigation.compose.rememberNavController
|
2026-03-26 02:52:08 +02:00
|
|
|
import com.vitorpamplona.quartz.utils.platform
|
2026-03-23 01:41:39 +02:00
|
|
|
|
|
|
|
|
class MainActivity : ComponentActivity() {
|
|
|
|
|
override fun onCreate(savedInstanceState: Bundle?) {
|
|
|
|
|
enableEdgeToEdge()
|
|
|
|
|
super.onCreate(savedInstanceState)
|
|
|
|
|
|
|
|
|
|
setContent {
|
2026-03-23 02:21:18 +02:00
|
|
|
val navController = rememberNavController()
|
|
|
|
|
|
|
|
|
|
AuxApp(
|
2026-03-26 02:52:08 +02:00
|
|
|
navController = navController,
|
|
|
|
|
auxGlobal = AuxGlobal(
|
|
|
|
|
platformContext = PlatformContext(
|
|
|
|
|
applicationContext = applicationContext
|
|
|
|
|
)
|
|
|
|
|
)
|
2026-03-23 02:21:18 +02:00
|
|
|
)
|
2026-03-23 01:41:39 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|