swapping to webview webrtc setup as temp solution

will build a custom C# webrtc implementation later
This commit is contained in:
2026-03-26 03:32:58 -04:00
parent 3d5c35fb15
commit a5772d7579
9 changed files with 266 additions and 149 deletions

View File

@@ -53,6 +53,14 @@
Spacing="8" />
</ScrollView>
</Border>
<Border x:Name="RtcView"
Grid.Row="1"
Grid.Column="1"
StrokeThickness="1"
Padding="10"
IsVisible="False">
<WebView Source="test.html"/>
</Border>
<!-- Input -->
<Grid Grid.Row="2"
@@ -69,6 +77,11 @@
Text="Send"
Clicked="SendButton_OnClicked" />
</Grid>
<!-- Swap View -->
<Button x:Name="ViewSwapped" Grid.Row="2" Grid.Column="0"
Text="Swap to WebView"
Clicked="SwapView_OnClicked" />
</Grid>
</ContentPage>