Skip to content

Commit 6d8c9b2

Browse files
committed
Initial release, extracted from other app.
0 parents  commit 6d8c9b2

File tree

194 files changed

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

194 files changed

+14024
-0
lines changed

.fvmrc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"flutter": "stable"
3+
}

.gitignore

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
# Miscellaneous
2+
*.class
3+
*.log
4+
*.pyc
5+
*.swp
6+
.DS_Store
7+
.atom/
8+
.build/
9+
.buildlog/
10+
.history
11+
.svn/
12+
.swiftpm/
13+
migrate_working_dir/
14+
15+
# IntelliJ related
16+
*.iml
17+
*.ipr
18+
*.iws
19+
.idea/
20+
21+
# The .vscode folder contains launch configuration and tasks you configure in
22+
# VS Code which you may wish to be included in version control, so this line
23+
# is commented out by default.
24+
#.vscode/
25+
26+
# Flutter/Dart/Pub related
27+
# Libraries should not include pubspec.lock, per https://dart.dev/guides/libraries/private-files#pubspeclock.
28+
/pubspec.lock
29+
**/doc/api/
30+
.dart_tool/
31+
.flutter-plugins-dependencies
32+
/build/
33+
/coverage/
34+
35+
# FVM Version Cache
36+
.fvm/

.metadata

Lines changed: 45 additions & 0 deletions
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 and should not be manually edited.
5+
6+
version:
7+
revision: "35f197f1e5f5cf5410712a71dfb7f65c7473831d"
8+
channel: "main"
9+
10+
project_type: plugin
11+
12+
# Tracks metadata for the flutter migrate command
13+
migration:
14+
platforms:
15+
- platform: root
16+
create_revision: 35f197f1e5f5cf5410712a71dfb7f65c7473831d
17+
base_revision: 35f197f1e5f5cf5410712a71dfb7f65c7473831d
18+
- platform: android
19+
create_revision: 35f197f1e5f5cf5410712a71dfb7f65c7473831d
20+
base_revision: 35f197f1e5f5cf5410712a71dfb7f65c7473831d
21+
- platform: ios
22+
create_revision: 35f197f1e5f5cf5410712a71dfb7f65c7473831d
23+
base_revision: 35f197f1e5f5cf5410712a71dfb7f65c7473831d
24+
- platform: linux
25+
create_revision: 35f197f1e5f5cf5410712a71dfb7f65c7473831d
26+
base_revision: 35f197f1e5f5cf5410712a71dfb7f65c7473831d
27+
- platform: macos
28+
create_revision: 35f197f1e5f5cf5410712a71dfb7f65c7473831d
29+
base_revision: 35f197f1e5f5cf5410712a71dfb7f65c7473831d
30+
- platform: web
31+
create_revision: 35f197f1e5f5cf5410712a71dfb7f65c7473831d
32+
base_revision: 35f197f1e5f5cf5410712a71dfb7f65c7473831d
33+
- platform: windows
34+
create_revision: 35f197f1e5f5cf5410712a71dfb7f65c7473831d
35+
base_revision: 35f197f1e5f5cf5410712a71dfb7f65c7473831d
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'

.vscode/settings.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"dart.flutterSdkPath": ".fvm/versions/stable"
3+
}

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
## 0.0.1
2+
3+
* TODO: Describe initial release.

LICENSE

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
Copyright (c) 2025 zeyus
2+
3+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
4+
5+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
6+
7+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

0 commit comments

Comments
 (0)