diff --git a/.idea/misc.xml b/.idea/misc.xml index b2c751a..bbe09e4 100644 --- a/.idea/misc.xml +++ b/.idea/misc.xml @@ -1,3 +1,7 @@ +<<<<<<< HEAD +======= + +>>>>>>> 198d43db29cb709eaba6466e4d4490c76c01bb2d diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index 707ee08..165b2c3 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -2,10 +2,6 @@ - - - - + android:theme="@style/Theme.WomanSafe"> - ApiTestScreen( + Greeting( + name = "Android", modifier = Modifier.padding(innerPadding) ) } @@ -29,10 +30,18 @@ class MainActivity : ComponentActivity() { } } +@Composable +fun Greeting(name: String, modifier: Modifier = Modifier) { + Text( + text = "Hello $name!", + modifier = modifier + ) +} + @Preview(showBackground = true) @Composable fun GreetingPreview() { WomanSafeTheme { - ApiTestScreen() + Greeting("Android") } } \ No newline at end of file