Skip to content

Commit

Permalink
ktlint
Browse files Browse the repository at this point in the history
  • Loading branch information
hbb20 committed Dec 30, 2023
1 parent 6468b10 commit 6f4a38e
Showing 1 changed file with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ import androidx.compose.ui.res.painterResource
import androidx.compose.ui.text.input.KeyboardType
import androidx.compose.ui.tooling.preview.Preview
import androidx.compose.ui.unit.dp
import com.google.android.material.shape.MarkerEdgeTreatment
import com.hbb20.androidcountrypicker.R
import com.hbb20.androidcountrypicker.compose.theme.DemoTheme
import com.hbb20.contrypicker.flagpack1.FlagPack1
Expand All @@ -59,7 +58,12 @@ class ComposeDemoActivity : ComponentActivity() {
color = MaterialTheme.colors.background,
) {
Column(modifier = Modifier.verticalScroll(rememberScrollState())) {
Text(text = "Jetpack Compose", style = MaterialTheme.typography.h5, color = MaterialTheme.colors.onSurface, modifier = Modifier.padding(16.dp))
Text(
text = "Jetpack Compose",
style = MaterialTheme.typography.h5,
color = MaterialTheme.colors.onSurface,
modifier = Modifier.padding(16.dp),
)
OutOfBox()
AutoDetectedInitialCountry()
UseFlagPack()
Expand Down

0 comments on commit 6f4a38e

Please sign in to comment.