fix(ios): add visible test element to verify HTML loading

Added highly visible red banner to verify HTML is loading:

Visibility Test:
- Red banner with white text at top of page
- Should appear immediately if HTML loads
- Helps diagnose if issue is HTML loading or JavaScript

Fixes:
- Black screen debugging: can now see if HTML loads at all
- WebView verification: confirms WebView is serving HTML
- Immediate feedback: no need to wait for JavaScript

Result: Can immediately see if HTML is loading or if WebView is the issue
This commit is contained in:
Matthew Raymer
2025-11-11 20:17:26 -08:00
parent 9f79547556
commit 345610b4d3

View File

@@ -51,6 +51,10 @@
</head> </head>
<body> <body>
<div class="container"> <div class="container">
<!-- Immediate visibility test - should appear even if JS fails -->
<div style="background: red; color: white; padding: 20px; margin-bottom: 20px; font-size: 24px; font-weight: bold; text-align: center;">
✅ HTML IS LOADING - If you see this, the WebView is working!
</div>
<h1>🔔 DailyNotification Plugin Test</h1> <h1>🔔 DailyNotification Plugin Test</h1>
<p>Test the DailyNotification plugin functionality</p> <p>Test the DailyNotification plugin functionality</p>
<p style="font-size: 12px; opacity: 0.8;">Build: 2025-10-14 05:00:00 UTC</p> <p style="font-size: 12px; opacity: 0.8;">Build: 2025-10-14 05:00:00 UTC</p>