- 创建 Chromium/Electron 应用检测器 - 设计喜报风格的 UI 界面 - 添加应用列表查看功能 - 配置应用图标和颜色资源 - 添加 README 文档 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
21 lines
343 B
Swift
21 lines
343 B
Swift
//
|
|
// ChromiumCertificateApp.swift
|
|
// ChromiumCertificate
|
|
//
|
|
// Created by Astrian Zheng on 14/7/2025.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
@main
|
|
struct ChromiumCertificateApp: App {
|
|
var body: some Scene {
|
|
WindowGroup {
|
|
ContentView()
|
|
}
|
|
.windowResizability(.contentSize)
|
|
.defaultSize(width: 640, height: 480)
|
|
.windowStyle(.hiddenTitleBar)
|
|
}
|
|
}
|