Skip to content

Commit f401a2f

Browse files
committed
Initial commit
0 parents  commit f401a2f

File tree

3 files changed

+142
-0
lines changed

3 files changed

+142
-0
lines changed

.gitattributes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Auto detect text files and perform LF normalization
2+
* text=auto

.gitignore

Lines changed: 119 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,119 @@
1+
# Miscellaneous
2+
*.class
3+
*.lock
4+
*.log
5+
*.pyc
6+
*.swp
7+
.buildlog/
8+
.history
9+
10+
11+
12+
# Flutter repo-specific
13+
/bin/cache/
14+
/bin/internal/bootstrap.bat
15+
/bin/internal/bootstrap.sh
16+
/bin/mingit/
17+
/dev/benchmarks/mega_gallery/
18+
/dev/bots/.recipe_deps
19+
/dev/bots/android_tools/
20+
/dev/devicelab/ABresults*.json
21+
/dev/docs/doc/
22+
/dev/docs/flutter.docs.zip
23+
/dev/docs/lib/
24+
/dev/docs/pubspec.yaml
25+
/dev/integration_tests/**/xcuserdata
26+
/dev/integration_tests/**/Pods
27+
/packages/flutter/coverage/
28+
version
29+
analysis_benchmark.json
30+
31+
# packages file containing multi-root paths
32+
.packages.generated
33+
34+
# Flutter/Dart/Pub related
35+
**/doc/api/
36+
.dart_tool/
37+
.flutter-plugins
38+
.flutter-plugins-dependencies
39+
**/generated_plugin_registrant.dart
40+
.packages
41+
.pub-preload-cache/
42+
.pub/
43+
build/
44+
flutter_*.png
45+
linked_*.ds
46+
unlinked.ds
47+
unlinked_spec.ds
48+
49+
# Android related
50+
**/android/**/gradle-wrapper.jar
51+
.gradle/
52+
**/android/captures/
53+
**/android/gradlew
54+
**/android/gradlew.bat
55+
**/android/local.properties
56+
**/android/**/GeneratedPluginRegistrant.java
57+
**/android/key.properties
58+
*.jks
59+
60+
# iOS/XCode related
61+
**/ios/**/*.mode1v3
62+
**/ios/**/*.mode2v3
63+
**/ios/**/*.moved-aside
64+
**/ios/**/*.pbxuser
65+
**/ios/**/*.perspectivev3
66+
**/ios/**/*sync/
67+
**/ios/**/.sconsign.dblite
68+
**/ios/**/.tags*
69+
**/ios/**/.vagrant/
70+
**/ios/**/DerivedData/
71+
**/ios/**/Icon?
72+
**/ios/**/Pods/
73+
**/ios/**/.symlinks/
74+
**/ios/**/profile
75+
**/ios/**/xcuserdata
76+
**/ios/.generated/
77+
**/ios/Flutter/.last_build_id
78+
**/ios/Flutter/App.framework
79+
**/ios/Flutter/Flutter.framework
80+
**/ios/Flutter/Flutter.podspec
81+
**/ios/Flutter/Generated.xcconfig
82+
**/ios/Flutter/ephemeral
83+
**/ios/Flutter/app.flx
84+
**/ios/Flutter/app.zip
85+
**/ios/Flutter/flutter_assets/
86+
**/ios/Flutter/flutter_export_environment.sh
87+
**/ios/ServiceDefinitions.json
88+
**/ios/Runner/GeneratedPluginRegistrant.*
89+
90+
# macOS
91+
**/Flutter/ephemeral/
92+
**/Pods/
93+
**/macos/Flutter/GeneratedPluginRegistrant.swift
94+
**/macos/Flutter/ephemeral
95+
**/xcuserdata/
96+
97+
# Windows
98+
**/windows/flutter/generated_plugin_registrant.cc
99+
**/windows/flutter/generated_plugin_registrant.h
100+
**/windows/flutter/generated_plugins.cmake
101+
102+
# Linux
103+
**/linux/flutter/generated_plugin_registrant.cc
104+
**/linux/flutter/generated_plugin_registrant.h
105+
**/linux/flutter/generated_plugins.cmake
106+
107+
# Coverage
108+
coverage/
109+
110+
# Symbols
111+
app.*.symbols
112+
113+
# Exceptions to above rules.
114+
!**/ios/**/default.mode1v3
115+
!**/ios/**/default.mode2v3
116+
!**/ios/**/default.pbxuser
117+
!**/ios/**/default.perspectivev3
118+
!/packages/flutter_tools/test/data/dart_dependencies_test/**/.packages
119+
!/dev/ci/**/Gemfile.lock

LICENSE

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

0 commit comments

Comments
 (0)