Skip to content

Commit 05d8f8e

Browse files
committedAug 27, 2020
First Commit
0 parents  commit 05d8f8e

File tree

87 files changed

+3115
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

87 files changed

+3115
-0
lines changed
 

‎.flutter-plugins-dependencies

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"info":"This is a generated file; do not edit or check into version control.","plugins":{"ios":[{"name":"geolocator","path":"/Users/sarthakpol/Desktop/flutter/.pub-cache/hosted/pub.dartlang.org/geolocator-5.0.1/","dependencies":["google_api_availability","location_permissions"]},{"name":"google_api_availability","path":"/Users/sarthakpol/Desktop/flutter/.pub-cache/hosted/pub.dartlang.org/google_api_availability-2.0.1/","dependencies":[]},{"name":"location_permissions","path":"/Users/sarthakpol/Desktop/flutter/.pub-cache/hosted/pub.dartlang.org/location_permissions-2.0.2/","dependencies":[]},{"name":"permission_handler","path":"/Users/sarthakpol/Desktop/flutter/.pub-cache/hosted/pub.dartlang.org/permission_handler-3.1.0/","dependencies":[]},{"name":"shared_preferences","path":"/Users/sarthakpol/Desktop/flutter/.pub-cache/hosted/pub.dartlang.org/shared_preferences-0.5.3+1/","dependencies":[]}],"android":[{"name":"geolocator","path":"/Users/sarthakpol/Desktop/flutter/.pub-cache/hosted/pub.dartlang.org/geolocator-5.0.1/","dependencies":["google_api_availability","location_permissions"]},{"name":"google_api_availability","path":"/Users/sarthakpol/Desktop/flutter/.pub-cache/hosted/pub.dartlang.org/google_api_availability-2.0.1/","dependencies":[]},{"name":"location_permissions","path":"/Users/sarthakpol/Desktop/flutter/.pub-cache/hosted/pub.dartlang.org/location_permissions-2.0.2/","dependencies":[]},{"name":"permission_handler","path":"/Users/sarthakpol/Desktop/flutter/.pub-cache/hosted/pub.dartlang.org/permission_handler-3.1.0/","dependencies":[]},{"name":"shared_preferences","path":"/Users/sarthakpol/Desktop/flutter/.pub-cache/hosted/pub.dartlang.org/shared_preferences-0.5.3+1/","dependencies":[]}],"macos":[],"linux":[],"windows":[],"web":[]},"dependencyGraph":[{"name":"geolocator","dependencies":["google_api_availability","location_permissions"]},{"name":"google_api_availability","dependencies":[]},{"name":"location_permissions","dependencies":[]},{"name":"permission_handler","dependencies":[]},{"name":"shared_preferences","dependencies":[]}],"date_created":"2020-08-27 15:55:18.795217","version":"1.17.5"}

‎.gitignore

+73
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
# Miscellaneous
2+
*.class
3+
*.log
4+
*.pyc
5+
*.swp
6+
.DS_Store
7+
.atom/
8+
.buildlog/
9+
.history
10+
.svn/
11+
12+
#api keys
13+
lib/src/api/api_keys.dart
14+
15+
# IntelliJ related
16+
*.iml
17+
*.ipr
18+
*.iws
19+
.idea/
20+
21+
# Visual Studio Code related
22+
.vscode/
23+
24+
# Flutter/Dart/Pub related
25+
**/doc/api/
26+
.dart_tool/
27+
.flutter-plugins
28+
.packages
29+
.pub-cache/
30+
.pub/
31+
/build/
32+
33+
# Android related
34+
**/android/**/gradle-wrapper.jar
35+
**/android/.gradle
36+
**/android/captures/
37+
**/android/gradlew
38+
**/android/gradlew.bat
39+
**/android/local.properties
40+
**/android/**/GeneratedPluginRegistrant.java
41+
42+
# iOS/XCode related
43+
**/ios/**/*.mode1v3
44+
**/ios/**/*.mode2v3
45+
**/ios/**/*.moved-aside
46+
**/ios/**/*.pbxuser
47+
**/ios/**/*.perspectivev3
48+
**/ios/**/*sync/
49+
**/ios/**/.sconsign.dblite
50+
**/ios/**/.tags*
51+
**/ios/**/.vagrant/
52+
**/ios/**/DerivedData/
53+
**/ios/**/Icon?
54+
**/ios/**/Pods/
55+
**/ios/**/.symlinks/
56+
**/ios/**/profile
57+
**/ios/**/xcuserdata
58+
**/ios/.generated/
59+
**/ios/Flutter/App.framework
60+
**/ios/Flutter/Flutter.framework
61+
**/ios/Flutter/Generated.xcconfig
62+
**/ios/Flutter/app.flx
63+
**/ios/Flutter/app.zip
64+
**/ios/Flutter/flutter_assets/
65+
**/ios/ServiceDefinitions.json
66+
**/ios/Runner/GeneratedPluginRegistrant.*
67+
68+
# Exceptions to above rules.
69+
!**/ios/**/default.mode1v3
70+
!**/ios/**/default.mode2v3
71+
!**/ios/**/default.pbxuser
72+
!**/ios/**/default.perspectivev3
73+
!/packages/flutter_tools/test/data/dart_dependencies_test/**/.packages

0 commit comments

Comments
 (0)
Please sign in to comment.