@@ -90,7 +90,10 @@ fun FiltersScreen(
90
90
}, enabled = true
91
91
)
92
92
) {
93
- Row (modifier = Modifier .fillMaxWidth()) {
93
+ Row (
94
+ modifier = Modifier .fillMaxWidth(),
95
+ verticalAlignment = Alignment .CenterVertically
96
+ ) {
94
97
Checkbox (
95
98
checked = cfpFilterCheckState.value,
96
99
onCheckedChange = {
@@ -103,7 +106,6 @@ fun FiltersScreen(
103
106
)
104
107
Text (
105
108
text = " Cfp Open" ,
106
- modifier = Modifier .padding(start = 8 .dp, top = 2 .dp),
107
109
color = themeColors.primary,
108
110
style = MaterialTheme .typography.body2
109
111
)
@@ -201,7 +203,8 @@ fun CountryList(
201
203
Row (
202
204
modifier = Modifier
203
205
.fillMaxWidth()
204
- .padding(start = 8 .dp, bottom = 4 .dp)
206
+ .padding(start = 8 .dp, bottom = 4 .dp),
207
+ verticalAlignment = Alignment .CenterVertically ,
205
208
) {
206
209
Checkbox (
207
210
checked = countryChecked.value,
@@ -220,7 +223,6 @@ fun CountryList(
220
223
)
221
224
Text (
222
225
text = country.name,
223
- modifier = Modifier .padding(start = 8 .dp, top = 2 .dp),
224
226
color = themeColors.primary,
225
227
style = MaterialTheme .typography.body2
226
228
)
0 commit comments