Skip to content

Commit 711af22

Browse files
committed
first commit
0 parents  commit 711af22

File tree

7 files changed

+442
-0
lines changed

7 files changed

+442
-0
lines changed

.gitignore

+54
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
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+
.pub-cache/
31+
.pub/
32+
/build/
33+
34+
# Symbolication related
35+
app.*.symbols
36+
37+
# Obfuscation related
38+
app.*.map.json
39+
40+
# Android Studio will place build artifacts here
41+
/android/app/debug
42+
/android/app/profile
43+
/android/app/release
44+
45+
#custom
46+
.idea/
47+
android/
48+
build/
49+
ios/
50+
linux/
51+
macos/
52+
test/
53+
web/
54+
windows/

.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 and should not be manually edited.
5+
6+
version:
7+
revision: "b0366e0a3f089e15fd89c97604ab402fe26b724c"
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: b0366e0a3f089e15fd89c97604ab402fe26b724c
17+
base_revision: b0366e0a3f089e15fd89c97604ab402fe26b724c
18+
- platform: android
19+
create_revision: b0366e0a3f089e15fd89c97604ab402fe26b724c
20+
base_revision: b0366e0a3f089e15fd89c97604ab402fe26b724c
21+
- platform: ios
22+
create_revision: b0366e0a3f089e15fd89c97604ab402fe26b724c
23+
base_revision: b0366e0a3f089e15fd89c97604ab402fe26b724c
24+
- platform: linux
25+
create_revision: b0366e0a3f089e15fd89c97604ab402fe26b724c
26+
base_revision: b0366e0a3f089e15fd89c97604ab402fe26b724c
27+
- platform: macos
28+
create_revision: b0366e0a3f089e15fd89c97604ab402fe26b724c
29+
base_revision: b0366e0a3f089e15fd89c97604ab402fe26b724c
30+
- platform: web
31+
create_revision: b0366e0a3f089e15fd89c97604ab402fe26b724c
32+
base_revision: b0366e0a3f089e15fd89c97604ab402fe26b724c
33+
- platform: windows
34+
create_revision: b0366e0a3f089e15fd89c97604ab402fe26b724c
35+
base_revision: b0366e0a3f089e15fd89c97604ab402fe26b724c
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'

README.md

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# my_game
2+
3+
A new Flutter project.
4+
5+
## Getting Started
6+
7+
This project is a starting point for a Flutter application.
8+
9+
A few resources to get you started if this is your first Flutter project:
10+
11+
- [Lab: Write your first Flutter app](https://docs.flutter.dev/get-started/codelab)
12+
- [Cookbook: Useful Flutter samples](https://docs.flutter.dev/cookbook)
13+
14+
For help getting started with Flutter development, view the
15+
[online documentation](https://docs.flutter.dev/), which offers tutorials,
16+
samples, guidance on mobile development, and a full API reference.

analysis_options.yaml

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# This file configures the analyzer, which statically analyzes Dart code to
2+
# check for errors, warnings, and lints.
3+
#
4+
# The issues identified by the analyzer are surfaced in the UI of Dart-enabled
5+
# IDEs (https://dart.dev/tools#ides-and-editors). The analyzer can also be
6+
# invoked from the command line by running `flutter analyze`.
7+
8+
# The following line activates a set of recommended lints for Flutter apps,
9+
# packages, and plugins designed to encourage good coding practices.
10+
include: package:flutter_lints/flutter.yaml
11+
12+
linter:
13+
# The lint rules applied to this project can be customized in the
14+
# section below to disable rules from the `package:flutter_lints/flutter.yaml`
15+
# included above or to enable additional rules. A list of all available lints
16+
# and their documentation is published at https://dart.dev/lints.
17+
#
18+
# Instead of disabling a lint rule for the entire project in the
19+
# section below, it can also be suppressed for a single line of code
20+
# or a specific dart file by using the `// ignore: name_of_lint` and
21+
# `// ignore_for_file: name_of_lint` syntax on the line or in the file
22+
# producing the lint.
23+
rules:
24+
# avoid_print: false # Uncomment to disable the `avoid_print` rule
25+
# prefer_single_quotes: true # Uncomment to enable the `prefer_single_quotes` rule
26+
27+
# Additional information about this file can be found at
28+
# https://dart.dev/guides/language/analysis-options

lib/main.dart

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
import 'package:flutter/material.dart';
2+
3+
void main() {
4+
runApp(
5+
const MyApp()
6+
);
7+
}
8+
9+
class MyApp extends StatelessWidget {
10+
const MyApp({super.key});
11+
12+
@override
13+
Widget build(BuildContext context) {
14+
return MaterialApp(
15+
home: Scaffold(
16+
backgroundColor: Colors.teal,
17+
body: Container(),
18+
),
19+
);
20+
}
21+
}

pubspec.lock

+188
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,188 @@
1+
# Generated by pub
2+
# See https://dart.dev/tools/pub/glossary#lockfile
3+
packages:
4+
async:
5+
dependency: transitive
6+
description:
7+
name: async
8+
sha256: "947bfcf187f74dbc5e146c9eb9c0f10c9f8b30743e341481c1e2ed3ecc18c20c"
9+
url: "https://pub.dev"
10+
source: hosted
11+
version: "2.11.0"
12+
boolean_selector:
13+
dependency: transitive
14+
description:
15+
name: boolean_selector
16+
sha256: "6cfb5af12253eaf2b368f07bacc5a80d1301a071c73360d746b7f2e32d762c66"
17+
url: "https://pub.dev"
18+
source: hosted
19+
version: "2.1.1"
20+
characters:
21+
dependency: transitive
22+
description:
23+
name: characters
24+
sha256: "04a925763edad70e8443c99234dc3328f442e811f1d8fd1a72f1c8ad0f69a605"
25+
url: "https://pub.dev"
26+
source: hosted
27+
version: "1.3.0"
28+
clock:
29+
dependency: transitive
30+
description:
31+
name: clock
32+
sha256: cb6d7f03e1de671e34607e909a7213e31d7752be4fb66a86d29fe1eb14bfb5cf
33+
url: "https://pub.dev"
34+
source: hosted
35+
version: "1.1.1"
36+
collection:
37+
dependency: transitive
38+
description:
39+
name: collection
40+
sha256: ee67cb0715911d28db6bf4af1026078bd6f0128b07a5f66fb2ed94ec6783c09a
41+
url: "https://pub.dev"
42+
source: hosted
43+
version: "1.18.0"
44+
cupertino_icons:
45+
dependency: "direct main"
46+
description:
47+
name: cupertino_icons
48+
sha256: d57953e10f9f8327ce64a508a355f0b1ec902193f66288e8cb5070e7c47eeb2d
49+
url: "https://pub.dev"
50+
source: hosted
51+
version: "1.0.6"
52+
fake_async:
53+
dependency: transitive
54+
description:
55+
name: fake_async
56+
sha256: "511392330127add0b769b75a987850d136345d9227c6b94c96a04cf4a391bf78"
57+
url: "https://pub.dev"
58+
source: hosted
59+
version: "1.3.1"
60+
flutter:
61+
dependency: "direct main"
62+
description: flutter
63+
source: sdk
64+
version: "0.0.0"
65+
flutter_lints:
66+
dependency: "direct dev"
67+
description:
68+
name: flutter_lints
69+
sha256: a25a15ebbdfc33ab1cd26c63a6ee519df92338a9c10f122adda92938253bef04
70+
url: "https://pub.dev"
71+
source: hosted
72+
version: "2.0.3"
73+
flutter_test:
74+
dependency: "direct dev"
75+
description: flutter
76+
source: sdk
77+
version: "0.0.0"
78+
lints:
79+
dependency: transitive
80+
description:
81+
name: lints
82+
sha256: "0a217c6c989d21039f1498c3ed9f3ed71b354e69873f13a8dfc3c9fe76f1b452"
83+
url: "https://pub.dev"
84+
source: hosted
85+
version: "2.1.1"
86+
matcher:
87+
dependency: transitive
88+
description:
89+
name: matcher
90+
sha256: "1803e76e6653768d64ed8ff2e1e67bea3ad4b923eb5c56a295c3e634bad5960e"
91+
url: "https://pub.dev"
92+
source: hosted
93+
version: "0.12.16"
94+
material_color_utilities:
95+
dependency: transitive
96+
description:
97+
name: material_color_utilities
98+
sha256: "9528f2f296073ff54cb9fee677df673ace1218163c3bc7628093e7eed5203d41"
99+
url: "https://pub.dev"
100+
source: hosted
101+
version: "0.5.0"
102+
meta:
103+
dependency: transitive
104+
description:
105+
name: meta
106+
sha256: a6e590c838b18133bb482a2745ad77c5bb7715fb0451209e1a7567d416678b8e
107+
url: "https://pub.dev"
108+
source: hosted
109+
version: "1.10.0"
110+
path:
111+
dependency: transitive
112+
description:
113+
name: path
114+
sha256: "8829d8a55c13fc0e37127c29fedf290c102f4e40ae94ada574091fe0ff96c917"
115+
url: "https://pub.dev"
116+
source: hosted
117+
version: "1.8.3"
118+
sky_engine:
119+
dependency: transitive
120+
description: flutter
121+
source: sdk
122+
version: "0.0.99"
123+
source_span:
124+
dependency: transitive
125+
description:
126+
name: source_span
127+
sha256: "53e943d4206a5e30df338fd4c6e7a077e02254531b138a15aec3bd143c1a8b3c"
128+
url: "https://pub.dev"
129+
source: hosted
130+
version: "1.10.0"
131+
stack_trace:
132+
dependency: transitive
133+
description:
134+
name: stack_trace
135+
sha256: "73713990125a6d93122541237550ee3352a2d84baad52d375a4cad2eb9b7ce0b"
136+
url: "https://pub.dev"
137+
source: hosted
138+
version: "1.11.1"
139+
stream_channel:
140+
dependency: transitive
141+
description:
142+
name: stream_channel
143+
sha256: ba2aa5d8cc609d96bbb2899c28934f9e1af5cddbd60a827822ea467161eb54e7
144+
url: "https://pub.dev"
145+
source: hosted
146+
version: "2.1.2"
147+
string_scanner:
148+
dependency: transitive
149+
description:
150+
name: string_scanner
151+
sha256: "556692adab6cfa87322a115640c11f13cb77b3f076ddcc5d6ae3c20242bedcde"
152+
url: "https://pub.dev"
153+
source: hosted
154+
version: "1.2.0"
155+
term_glyph:
156+
dependency: transitive
157+
description:
158+
name: term_glyph
159+
sha256: a29248a84fbb7c79282b40b8c72a1209db169a2e0542bce341da992fe1bc7e84
160+
url: "https://pub.dev"
161+
source: hosted
162+
version: "1.2.1"
163+
test_api:
164+
dependency: transitive
165+
description:
166+
name: test_api
167+
sha256: "5c2f730018264d276c20e4f1503fd1308dfbbae39ec8ee63c5236311ac06954b"
168+
url: "https://pub.dev"
169+
source: hosted
170+
version: "0.6.1"
171+
vector_math:
172+
dependency: transitive
173+
description:
174+
name: vector_math
175+
sha256: "80b3257d1492ce4d091729e3a67a60407d227c27241d6927be0130c98e741803"
176+
url: "https://pub.dev"
177+
source: hosted
178+
version: "2.1.4"
179+
web:
180+
dependency: transitive
181+
description:
182+
name: web
183+
sha256: afe077240a270dcfd2aafe77602b4113645af95d0ad31128cc02bce5ac5d5152
184+
url: "https://pub.dev"
185+
source: hosted
186+
version: "0.3.0"
187+
sdks:
188+
dart: ">=3.2.3 <4.0.0"

0 commit comments

Comments
 (0)