Skip to content

Commit 63fd2fa

Browse files
committedSep 13, 2023
Initial commit
0 parents  commit 63fd2fa

File tree

149 files changed

+5293
-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.

149 files changed

+5293
-0
lines changed
 

‎.gitignore

+44
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
# Miscellaneous
2+
*.class
3+
*.log
4+
*.pyc
5+
*.swp
6+
.DS_Store
7+
.atom/
8+
.buildlog/
9+
.history
10+
.svn/
11+
migrate_working_dir/
12+
13+
# IntelliJ related
14+
*.iml
15+
*.ipr
16+
*.iws
17+
.idea/
18+
19+
# The .vscode folder contains launch configuration and tasks you configure in
20+
# VS Code which you may wish to be included in version control, so this line
21+
# is commented out by default.
22+
#.vscode/
23+
24+
# Flutter/Dart/Pub related
25+
**/doc/api/
26+
**/ios/Flutter/.last_build_id
27+
.dart_tool/
28+
.flutter-plugins
29+
.flutter-plugins-dependencies
30+
.packages
31+
.pub-cache/
32+
.pub/
33+
/build/
34+
35+
# Symbolication related
36+
app.*.symbols
37+
38+
# Obfuscation related
39+
app.*.map.json
40+
41+
# Android Studio will place build artifacts here
42+
/android/app/debug
43+
/android/app/profile
44+
/android/app/release

‎.metadata

+45
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
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.
5+
6+
version:
7+
revision: f468f3366c26a5092eb964a230ce7892fda8f2f8
8+
channel: stable
9+
10+
project_type: app
11+
12+
# Tracks metadata for the flutter migrate command
13+
migration:
14+
platforms:
15+
- platform: root
16+
create_revision: f468f3366c26a5092eb964a230ce7892fda8f2f8
17+
base_revision: f468f3366c26a5092eb964a230ce7892fda8f2f8
18+
- platform: android
19+
create_revision: f468f3366c26a5092eb964a230ce7892fda8f2f8
20+
base_revision: f468f3366c26a5092eb964a230ce7892fda8f2f8
21+
- platform: ios
22+
create_revision: f468f3366c26a5092eb964a230ce7892fda8f2f8
23+
base_revision: f468f3366c26a5092eb964a230ce7892fda8f2f8
24+
- platform: linux
25+
create_revision: f468f3366c26a5092eb964a230ce7892fda8f2f8
26+
base_revision: f468f3366c26a5092eb964a230ce7892fda8f2f8
27+
- platform: macos
28+
create_revision: f468f3366c26a5092eb964a230ce7892fda8f2f8
29+
base_revision: f468f3366c26a5092eb964a230ce7892fda8f2f8
30+
- platform: web
31+
create_revision: f468f3366c26a5092eb964a230ce7892fda8f2f8
32+
base_revision: f468f3366c26a5092eb964a230ce7892fda8f2f8
33+
- platform: windows
34+
create_revision: f468f3366c26a5092eb964a230ce7892fda8f2f8
35+
base_revision: f468f3366c26a5092eb964a230ce7892fda8f2f8
36+
37+
# User provided section
38+
39+
# List of Local paths (relative to this file) that should be
40+
# ignored by the migrate tool.
41+
#
42+
# Files that are not part of the templates will be ignored by default.
43+
unmanaged_files:
44+
- 'lib/main.dart'
45+
- 'ios/Runner.xcodeproj/project.pbxproj'

0 commit comments

Comments
 (0)
Please sign in to comment.