Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -250,6 +250,9 @@ async void DisplayPopup(object sender, EventArgs e)
{
AndroidViewType = AndroidViewType.SurfaceView,
Source = MediaSource.FromResource("AppleVideo.mp4"),
MetadataArtworkUrl = botImageUrl,
HeightRequest = 300,
WidthRequest = 800,
Comment on lines +254 to +255
Copy link

Copilot AI May 27, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[nitpick] Consider extracting these dimension values into constants to improve maintainability and consistency across UI components.

Suggested change
HeightRequest = 300,
WidthRequest = 800,
HeightRequest = PopupHeight,
WidthRequest = PopupWidth,

Copilot uses AI. Check for mistakes.
ShouldAutoPlay = true,
ShouldShowPlaybackControls = true,
};
Expand Down
Loading