Skip to content

Commit ccd47ad

Browse files
author
Bhavik Makwana
committedMay 10, 2019
Initial commit
0 parents  commit ccd47ad

Some content is hidden

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

66 files changed

+1894
-0
lines changed
 

‎.gitignore

+57
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
2+
# Created by https://www.gitignore.io/api/flutter
3+
# Edit at https://www.gitignore.io/?templates=flutter
4+
5+
### Flutter ###
6+
# Flutter/Dart/Pub related
7+
**/doc/api/
8+
.dart_tool/
9+
.flutter-plugins
10+
.packages
11+
.pub-cache/
12+
.pub/
13+
build/
14+
15+
# Android related
16+
**/android/**/gradle-wrapper.jar
17+
**/android/.gradle
18+
**/android/captures/
19+
**/android/gradlew
20+
**/android/gradlew.bat
21+
**/android/local.properties
22+
**/android/**/GeneratedPluginRegistrant.java
23+
24+
# iOS/XCode related
25+
**/ios/**/*.mode1v3
26+
**/ios/**/*.mode2v3
27+
**/ios/**/*.moved-aside
28+
**/ios/**/*.pbxuser
29+
**/ios/**/*.perspectivev3
30+
**/ios/**/*sync/
31+
**/ios/**/.sconsign.dblite
32+
**/ios/**/.tags*
33+
**/ios/**/.vagrant/
34+
**/ios/**/DerivedData/
35+
**/ios/**/Icon?
36+
**/ios/**/Pods/
37+
**/ios/**/.symlinks/
38+
**/ios/**/profile
39+
**/ios/**/xcuserdata
40+
**/ios/.generated/
41+
**/ios/Flutter/App.framework
42+
**/ios/Flutter/Flutter.framework
43+
**/ios/Flutter/Generated.xcconfig
44+
**/ios/Flutter/app.flx
45+
**/ios/Flutter/app.zip
46+
**/ios/Flutter/flutter_assets/
47+
**/ios/ServiceDefinitions.json
48+
**/ios/Runner/GeneratedPluginRegistrant.*
49+
50+
# Exceptions to above rules.
51+
!**/ios/**/default.mode1v3
52+
!**/ios/**/default.mode2v3
53+
!**/ios/**/default.pbxuser
54+
!**/ios/**/default.perspectivev3
55+
!/packages/flutter_tools/test/data/dart_dependencies_test/**/.packages
56+
57+
# End of https://www.gitignore.io/api/flutter

‎.metadata

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# This file tracks properties of this Flutter project.
2+
# Used by Flutter tool to assess capabilities and perform upgrades etc.
3+
#
4+
# This file should be version controlled and should not be manually edited.
5+
6+
version:
7+
revision: 8b114482a4b56c45ebc85f048156039b93a4bbd8
8+
channel: master
9+
10+
project_type: package

0 commit comments

Comments
 (0)
Please sign in to comment.