• 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
  • RunnerApp.swift
  • feat(ui):iOS原生项目接入runner ...
    fb3eedec
    feat(ui):模拟器可以运行了
    
    xx
    by 权海
    2026-06-11 17:39:27 +0800  
    Browse Files
RunnerApp.swift 361 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
//
//  RunnerApp.swift
//  Runner
//
//  Created by 权海 on 2026/6/11.
//

import SwiftUI

@main
struct RunnerApp: App {
    @UIApplicationDelegateAdaptor(AppDelegate.self) var appDelegate
    
    var body: some Scene {
        WindowGroup {
            FlutterRootView(engine:appDelegate.flutterEngine )
                .ignoresSafeArea()
        }
    }
}