Skip to content

Commit e1fa487

Browse files
committed
fix acrolinx score
1 parent 41ac262 commit e1fa487

File tree

2 files changed

+4
-4
lines changed
  • articles/communication-services/how-tos/ui-library-sdk/includes/button-injection

2 files changed

+4
-4
lines changed

articles/communication-services/how-tos/ui-library-sdk/includes/button-injection/android.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ ms.service: azure-communication-services
1010

1111
## Remove buttons
1212

13-
`CallCompositeCallScreenControlBarOptions`, allow the flexibility to customize the button bar by removing specific buttons such as camera, microphone, and audio controls. This API allows you to tailor the user interface according to their specific application requirements and user experience design. Just set the visbility to `false` to hide, the default behavior is for `CallCompositeButtonOptions` object.
13+
`CallCompositeCallScreenControlBarOptions`, allow the flexibility to customize the button bar by removing specific buttons such as camera, microphone, and audio controls. This API allows you to tailor the user interface according to their specific application requirements and user experience design. Just set the visibility to `false` to hide, the default behavior is for `CallCompositeButtonOptions` object.
1414

1515
#### [Kotlin](#tab/kotlin)
1616

@@ -59,7 +59,7 @@ callComposite.launch(context, locator, localOptions);
5959

6060
## Add custom actions
6161

62-
`Call composite` is using Fluent UI icons, you can download the icons directly from [the Fluent UI GitHub repository](https://github.com/microsoft/fluentui-system-icons/) and incorporate them into your project as needed. This approach guarantees visual consistency across all user interface elements, enhancing the overall user experience.
62+
`Call composite` is using Fluent UI icons. You can download the icons directly from [the Fluent UI GitHub repository](https://github.com/microsoft/fluentui-system-icons/) and incorporate them into your project as needed. This approach guarantees visual consistency across all user interface elements, enhancing the overall user experience.
6363

6464
#### [Kotlin](#tab/kotlin)
6565

articles/communication-services/how-tos/ui-library-sdk/includes/button-injection/ios.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ ms.service: azure-communication-services
1111

1212
## Remove buttons
1313

14-
`CallScreenControlBarOptions`, allow the flexibility to customize the button bar by removing specific buttons such as camera, microphone, and audio controls. This API allows you to tailor the user interface according to their specific application requirements and user experience design. Just set the visbility to `false` to hide, the default behavior is for `ButtonOptions` object.
14+
`CallScreenControlBarOptions`, allow the flexibility to customize the button bar by removing specific buttons such as camera, microphone, and audio controls. This API allows you to tailor the user interface according to their specific application requirements and user experience design. Just set the visibility to `false` to hide, the default behavior is for `ButtonOptions` object.
1515

1616
```swift
1717
let cameraButton = ButtonOptions(visible: false)
@@ -29,7 +29,7 @@ callComposite.launch(locator: .roomCall(roomId: "..."), localOptions: localOptio
2929

3030
## Add custom actions
3131

32-
`Call composite` is using Fluent UI icons, you can download the icons directly from [the Fluent UI GitHub repository](https://github.com/microsoft/fluentui-system-icons/) and incorporate them into your project as needed. This approach guarantees visual consistency across all user interface elements, enhancing the overall user experience.
32+
`Call composite` is using Fluent UI icons. You can download the icons directly from [the Fluent UI GitHub repository](https://github.com/microsoft/fluentui-system-icons/) and incorporate them into your project as needed. This approach guarantees visual consistency across all user interface elements, enhancing the overall user experience.
3333

3434
```swift
3535
let customButton = CustomButtonOptions(image: UIImage(named: "...")!,

0 commit comments

Comments
 (0)