blob: ab3d285c179d631c3acb5d71f1d7f9cf31f94b66 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
package sh.lajo.buddy
import androidx.compose.foundation.layout.Box
import androidx.compose.foundation.layout.fillMaxSize
import androidx.compose.material3.Text
import androidx.compose.runtime.Composable
import androidx.compose.ui.Alignment
import androidx.compose.ui.Modifier
import androidx.compose.ui.res.stringResource
@Composable
fun SettingsScreen() {
Box(modifier = Modifier.fillMaxSize(), contentAlignment = Alignment.Center) {
Text(stringResource(R.string.settings_screen_title))
}
}
|