Skip to content

Commit 7f48d34

Browse files
Fixed typo in the audio settings UI of the example app (#942)
Changes: Updated text labels to "Microphone" Updated dropdown placeholder Why: Improves clarity and professionalism in the example UI. Testing: Manually tested on Android emulator + physical device. --------- Co-authored-by: Hiroshi Horie <548776+hiroshihorie@users.noreply.github.com>
1 parent 86c4a66 commit 7f48d34

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.changes/prejoin-microphone-label

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
patch type="fixed" "Fix microphone label typo in example app prejoin audio settings"

example/lib/pages/prejoin.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -429,7 +429,7 @@ class _PreJoinPageState extends State<PreJoinPage> {
429429
child: Row(
430430
mainAxisAlignment: MainAxisAlignment.spaceBetween,
431431
children: [
432-
const Text('Micriphone:'),
432+
const Text('Microphone:'),
433433
Switch(
434434
value: _enableAudio,
435435
onChanged: (value) => _setEnableAudio(value),
@@ -444,7 +444,7 @@ class _PreJoinPageState extends State<PreJoinPage> {
444444
isExpanded: true,
445445
disabledHint: const Text('Disable Microphone'),
446446
hint: const Text(
447-
'Select Micriphone',
447+
'Select Microphone',
448448
),
449449
items: _enableAudio
450450
? _audioInputs

0 commit comments

Comments
 (0)