Toggle navigation
Toggle navigation
This project
Loading...
Sign in
flutter_package
/
mobile_scanner
Go to a project
Toggle navigation
Projects
Groups
Snippets
Help
Toggle navigation pinning
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
Navaron Bracke
2024-09-28 13:29:24 +0200
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
c4bddc386a3880fb75d4903dd7e67b2c17d40644
c4bddc38
1 parent
f5dd22d0
add swiftpm dir to macos example gitignore; fix secure coding warning for sample
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
0 deletions
example/.gitignore
example/macos/Runner/AppDelegate.swift
example/.gitignore
View file @
c4bddc3
...
...
@@ -5,9 +5,11 @@
*.swp
.DS_Store
.atom/
.build/
.buildlog/
.history
.svn/
.swiftpm/
migrate_working_dir/
# IntelliJ related
...
...
example/macos/Runner/AppDelegate.swift
View file @
c4bddc3
...
...
@@ -6,4 +6,8 @@ class AppDelegate: FlutterAppDelegate {
override
func
applicationShouldTerminateAfterLastWindowClosed
(
_
sender
:
NSApplication
)
->
Bool
{
return
true
}
override
func
applicationSupportsSecureRestorableState
(
_
app
:
NSApplication
)
->
Bool
{
return
true
}
}
...
...
Please
register
or
login
to post a comment