• This project
    • Loading...
  • Sign in

常守达 / doublefeel_flutter · Files

Go to a project

GitLab

  • Go to dashboard
  • Project
  • Activity
  • Files
  • Commits
  • Builds 0
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Members
  • Labels
  • Wiki
  • Forks
  • Network
  • doublefeel_flutter
  • ios
  • Runner Watch App
  • hippo_watchApp.swift
  • feat(ui):添加watch app 推送、watch表盘、移除thinkingdata
    03b69b43
    by 权海
    2026-06-17 18:44:56 +0800  
    Browse Files
hippo_watchApp.swift 412 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
//
//  hippo_watchApp.swift
//  hippo-watch Watch App
//
//  Created by shihao on 2025/6/6.
//

import SwiftUI
import UserNotifications
import WidgetKit

@main
struct hippo_watch_Watch_AppApp: App {
    @StateObject private var router = WatchNotificationRouter.shared
    
    var body: some Scene {
        WindowGroup {
            MainPagingView()
                .environmentObject(router)
        }
    }
}