@@ -330,47 +330,46 @@ fun DialogEditMetadata(
330
330
onValueChange = { titleText = it },
331
331
label = { Text (stringResource(R .string.label_title)) },
332
332
modifier = Modifier .fillMaxWidth(),
333
- singleLine = true ,
333
+
334
334
)
335
335
336
336
OutlinedTextField (
337
337
value = artistText,
338
338
onValueChange = { artistText = it },
339
339
label = { Text (stringResource(R .string.label_artist)) },
340
340
modifier = Modifier .fillMaxWidth(),
341
- singleLine = true ,
342
341
)
343
342
344
343
OutlinedTextField (
345
344
value = albumText,
346
345
onValueChange = { albumText = it },
347
346
label = { Text (stringResource(R .string.label_album)) },
348
347
modifier = Modifier .fillMaxWidth(),
349
- singleLine = true ,
348
+
350
349
)
351
350
352
351
OutlinedTextField (
353
352
value = albumArtistText,
354
353
onValueChange = { albumArtistText = it },
355
354
label = { Text (stringResource(R .string.label_album_artist)) },
356
355
modifier = Modifier .fillMaxWidth(),
357
- singleLine = true ,
356
+
358
357
)
359
358
360
359
OutlinedTextField (
361
360
value = genreText,
362
361
onValueChange = { genreText = it },
363
362
label = { Text (stringResource(R .string.label_genre)) },
364
363
modifier = Modifier .fillMaxWidth(),
365
- singleLine = true ,
364
+
366
365
)
367
366
368
367
OutlinedTextField (
369
368
value = yearText,
370
369
onValueChange = { yearText = it },
371
370
label = { Text (stringResource(R .string.label_year)) },
372
371
modifier = Modifier .fillMaxWidth(),
373
- singleLine = true ,
372
+
374
373
keyboardOptions = KeyboardOptions (keyboardType = KeyboardType .Number ),
375
374
)
376
375
@@ -379,7 +378,7 @@ fun DialogEditMetadata(
379
378
onValueChange = { trackText = it },
380
379
label = { Text (stringResource(R .string.label_track_number)) },
381
380
modifier = Modifier .fillMaxWidth(),
382
- singleLine = true ,
381
+
383
382
keyboardOptions = KeyboardOptions (keyboardType = KeyboardType .Number ),
384
383
)
385
384
0 commit comments