feat: Complete Phase 1 Authentication and setup Flutter project structure
- Completed authentication system with signup, login, password reset, and logout - Enhanced error handling and accessibility across all auth flows - Added comprehensive loading states and user feedback - Implemented confirmation dialogs for destructive actions - Setup complete Flutter project structure with proper configuration - Added planning documentation for Phase 2 household creation - All Phase 1 success criteria verified and complete
This commit is contained in:
15
macos/Runner/MainFlutterWindow.swift
Normal file
15
macos/Runner/MainFlutterWindow.swift
Normal file
@@ -0,0 +1,15 @@
|
||||
import Cocoa
|
||||
import FlutterMacOS
|
||||
|
||||
class MainFlutterWindow: NSWindow {
|
||||
override func awakeFromNib() {
|
||||
let flutterViewController = FlutterViewController()
|
||||
let windowFrame = self.frame
|
||||
self.contentViewController = flutterViewController
|
||||
self.setFrame(windowFrame, display: true)
|
||||
|
||||
RegisterGeneratedPlugins(registry: flutterViewController)
|
||||
|
||||
super.awakeFromNib()
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user