Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit e8de69e

Browse files
committed
feat: add menubar tray
1 parent 0124aca commit e8de69e

File tree

18 files changed

+1020
-0
lines changed

18 files changed

+1020
-0
lines changed

.gitignore

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
## User settings
2+
xcuserdata/
3+
4+
## Obj-C/Swift specific
5+
*.hmap
6+
7+
## App packaging
8+
*.ipa
9+
*.dSYM.zip
10+
*.dSYM
11+
12+
## Playgrounds
13+
timeline.xctimeline
14+
playground.xcworkspace
15+
16+
# Swift Package Manager
17+
#
18+
# Add this line if you want to avoid checking in source code from Swift Package Manager dependencies.
19+
# Packages/
20+
# Package.pins
21+
# Package.resolved
22+
# *.xcodeproj
23+
#
24+
# Xcode automatically generates this directory with a .xcworkspacedata file and xcuserdata
25+
# hence it is not needed unless you have added a package configuration file to your project
26+
# .swiftpm
27+
28+
.build/
29+
30+
# CocoaPods
31+
#
32+
# We recommend against adding the Pods directory to your .gitignore. However
33+
# you should judge for yourself, the pros and cons are mentioned at:
34+
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
35+
#
36+
# Pods/
37+
#
38+
# Add this line if you want to avoid checking in source code from the Xcode workspace
39+
# *.xcworkspace
40+
41+
# Carthage
42+
#
43+
# Add this line if you want to avoid checking in source code from Carthage dependencies.
44+
# Carthage/Checkouts
45+
46+
Carthage/Build/
47+
48+
# fastlane
49+
#
50+
# It is recommended to not store the screenshots in the git repo.
51+
# Instead, use fastlane to re-generate the screenshots whenever they are needed.
52+
# For more information about the recommended setup visit:
53+
# https://docs.fastlane.tools/best-practices/source-control/#source-control
54+
55+
fastlane/report.xml
56+
fastlane/Preview.html
57+
fastlane/screenshots/**/*.png
58+
fastlane/test_output
59+
60+
.DS_Store

.swiftlint.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
disabled_rules:
2+
- todo

0 commit comments

Comments
 (0)