mirror of
https://github.com/wailsapp/wails.git
synced 2026-03-15 07:05:50 +01:00
This commit integrates iOS platform support for Wails v3, adapting the iOS-specific code to work with the new transport layer architecture. Key changes: - Add iOS-specific application, webview, and runtime files - Add iOS event types and processing - Add iOS examples and templates - Update messageprocessor to handle iOS requests - Move badge_ios.go to dock package Note: The iOS branch was based on an older v3-alpha and required significant conflict resolution due to the transport layer refactor (PR #4702). Some iOS-specific code may need further adaptation: - processIOSMethod needs to be implemented with new RuntimeRequest signature - iOS event generation in tasks/events/generate.go needs updating 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
42 lines
No EOL
1.1 KiB
HTML
42 lines
No EOL
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>iOS Build Test</title>
|
|
<style>
|
|
body {
|
|
font-family: -apple-system, BlinkMacSystemFont, sans-serif;
|
|
padding: 20px;
|
|
background: linear-gradient(135deg, #667eea, #764ba2);
|
|
color: white;
|
|
}
|
|
h1 {
|
|
text-align: center;
|
|
}
|
|
.status {
|
|
background: rgba(255,255,255,0.2);
|
|
padding: 20px;
|
|
border-radius: 10px;
|
|
margin: 20px 0;
|
|
}
|
|
.success {
|
|
color: #4ade80;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>iOS Build Test</h1>
|
|
<div class="status">
|
|
<h2>Build Status</h2>
|
|
<p class="success">✅ iOS build system compiled successfully!</p>
|
|
<p>This demonstrates:</p>
|
|
<ul>
|
|
<li>✅ iOS build tags working</li>
|
|
<li>✅ Asset embedding functional</li>
|
|
<li>✅ Application structure correct</li>
|
|
<li>✅ Service binding ready</li>
|
|
</ul>
|
|
</div>
|
|
</body>
|
|
</html> |