File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
mobile/src/main/java/com/damn/anotherglass/ui/notifications/editfilter Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -172,7 +172,9 @@ fun FilterEditScreen(
172172 verticalAlignment = Alignment .CenterVertically ,
173173 horizontalArrangement = Arrangement .SpaceBetween
174174 ) {
175- Text (" Condition Matching:" , style = MaterialTheme .typography.bodyLarge)
175+ Text (" Match:" ,
176+ style = MaterialTheme .typography.bodyLarge,
177+ modifier = Modifier .weight(1f ))
176178 Row (verticalAlignment = Alignment .CenterVertically ) {
177179 RadioButton (
178180 selected = matchAllConditions,
@@ -182,7 +184,6 @@ fun FilterEditScreen(
182184 " All (AND)" ,
183185 Modifier
184186 .clickable { viewModel.matchAllConditions.value = true }
185- .padding(start = 4 .dp, end = 8 .dp)
186187 )
187188 RadioButton (
188189 selected = ! matchAllConditions,
@@ -192,7 +193,6 @@ fun FilterEditScreen(
192193 " Any (OR)" ,
193194 Modifier
194195 .clickable { viewModel.matchAllConditions.value = false }
195- .padding(start = 4 .dp)
196196 )
197197 }
198198 }
You can’t perform that action at this time.
0 commit comments