File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ import FlutterMacOS
17
17
18
18
class ExampleWindow : NSWindow {
19
19
override func awakeFromNib( ) {
20
- let flutterViewController = FLEViewController . init ( )
20
+ let flutterViewController = FlutterViewController . init ( )
21
21
let windowFrame = self . frame
22
22
self . contentViewController = flutterViewController
23
23
self . setFrame ( windowFrame, display: true )
Original file line number Diff line number Diff line change @@ -17,14 +17,14 @@ import FlutterMacOS
17
17
18
18
class FlutterWindow : NSWindow {
19
19
override func awakeFromNib( ) {
20
- let project = FLEDartProject . init ( )
20
+ let project = FlutterDartProject . init ( )
21
21
var arguments : [ String ] = [ ] ;
22
22
#if !DEBUG
23
23
arguments. append ( " --disable-dart-asserts " ) ;
24
24
#endif
25
25
project. engineSwitches = arguments
26
26
27
- let flutterViewController = FLEViewController . init ( project: project)
27
+ let flutterViewController = FlutterViewController . init ( project: project)
28
28
let windowFrame = self . frame
29
29
self . contentViewController = flutterViewController
30
30
self . setFrame ( windowFrame, display: true )
You can’t perform that action at this time.
0 commit comments