Skip to content

Commit

Permalink
Server -> Broadcaster
Browse files Browse the repository at this point in the history
  • Loading branch information
gredajustyna committed Sep 30, 2024
1 parent da72b37 commit 6c0d74e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ fun PlayerView(

@Composable
fun TabView() {
val tabTitles = listOf("WHEP", "WHEP (server)", "WHIP (server)")
val tabTitles = listOf("WHEP (broadcaster)", "WHEP", "WHIP")
val selectedTabIndex by viewModel.selectedTabIndex

Column(modifier = Modifier.fillMaxSize()) {
Expand Down
4 changes: 2 additions & 2 deletions examples/ios/WhipWhepDemo/WhipWhepDemo/ContentView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ struct ContentView: View {
var body: some View {
VStack {
Picker("Choose Player", selection: $selectedPlayerType) {
Text("WHEP").tag(PlayerType.whep_broadcaster)
Text("WHEP (server)").tag(PlayerType.whep)
Text("WHEP (broadcaster").tag(PlayerType.whep_broadcaster)
Text("WHEP").tag(PlayerType.whep)
Text("WHIP").tag(PlayerType.whip)
}
.pickerStyle(SegmentedPickerStyle())
Expand Down
8 changes: 4 additions & 4 deletions examples/react-native/WhipWhepDemo/app/(tabs)/_layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export default function TabLayout() {
<Tabs.Screen
name="index"
options={{
title: 'Whep',
title: 'Whep (broadcaster)',
tabBarIcon: ({ color, focused }) => (
<TabBarIcon
name={focused ? 'globe' : 'globe-outline'}
Expand All @@ -30,10 +30,10 @@ export default function TabLayout() {
<Tabs.Screen
name="whep"
options={{
title: 'Whep (server)',
title: 'Whep',
tabBarIcon: ({ color, focused }) => (
<TabBarIcon
name={focused ? 'log-out' : 'log-out-outline'}
name={focused ? 'log-in' : 'log-in-outline'}
color={color}
/>
),
Expand All @@ -43,7 +43,7 @@ export default function TabLayout() {
<Tabs.Screen
name="whip"
options={{
title: 'Whip (server)',
title: 'Whip',
tabBarIcon: ({ color, focused }) => (
<TabBarIcon
name={focused ? 'log-out' : 'log-out-outline'}
Expand Down

0 comments on commit 6c0d74e

Please sign in to comment.