Skip to content

Commit f2e0fdc

Browse files
first commit
0 parents  commit f2e0fdc

File tree

76 files changed

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

76 files changed

+2383
-0
lines changed

.gitignore

+66
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
# Miscellaneous
2+
*.class
3+
*.log
4+
*.pyc
5+
*.swp
6+
.DS_Store
7+
.atom/
8+
.buildlog/
9+
.history
10+
.svn/
11+
12+
# IntelliJ related
13+
*.iml
14+
*.ipr
15+
*.iws
16+
.idea/
17+
18+
# The .vscode folder contains launch configuration and tasks you configure in
19+
# VS Code which you may wish to be included in version control, so this line
20+
# is commented out by default.
21+
#.vscode/
22+
23+
# Flutter/Dart/Pub related
24+
**/doc/api/
25+
**/ios/Flutter/.last_build_id
26+
.dart_tool/
27+
.flutter-plugins
28+
.flutter-plugins-dependencies
29+
.packages
30+
.pub-cache/
31+
.pub/
32+
/build/
33+
34+
# Web related
35+
lib/generated_plugin_registrant.dart
36+
37+
# Symbolication related
38+
app.*.symbols
39+
40+
# Obfuscation related
41+
app.*.map.json
42+
43+
# Android Studio will place build artifacts here
44+
/android/app/debug
45+
/android/app/profile
46+
/android/app/release
47+
48+
#amplify
49+
amplify/\#current-cloud-backend
50+
amplify/.config/local-*
51+
amplify/logs
52+
amplify/mock-data
53+
amplify/backend/amplify-meta.json
54+
amplify/backend/awscloudformation
55+
amplify/backend/.temp
56+
build/
57+
dist/
58+
node_modules/
59+
aws-exports.js
60+
awsconfiguration.json
61+
amplifyconfiguration.json
62+
amplifyconfiguration.dart
63+
amplify-build-config.json
64+
amplify-gradle-config.json
65+
amplifytools.xcconfig
66+
.secret-*

.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: adc687823a831bbebe28bdccfac1a628ca621513
8+
channel: stable
9+
10+
project_type: app

.vscode/settings.json

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"files.exclude": {
3+
"amplify/.config": true,
4+
"amplify/**/*-parameters.json": true,
5+
"amplify/**/amplify.state": true,
6+
"amplify/**/transform.conf.json": true,
7+
"amplify/#current-cloud-backend": true,
8+
"amplify/backend/amplify-meta.json": true,
9+
"amplify/backend/awscloudformation": true
10+
}
11+
}

README.md

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# amplify_todo
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://flutter.dev/docs/get-started/codelab)
12+
- [Cookbook: Useful Flutter samples](https://flutter.dev/docs/cookbook)
13+
14+
For help getting started with Flutter, view our
15+
[online documentation](https://flutter.dev/docs), which offers tutorials,
16+
samples, guidance on mobile development, and a full API reference.

amplify/.config/project-config.json

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"providers": [
3+
"awscloudformation"
4+
],
5+
"projectName": "amplifytodoapp",
6+
"version": "3.1",
7+
"frontend": "flutter",
8+
"flutter": {
9+
"config": {
10+
"ResDir": "./lib/"
11+
}
12+
}
13+
}

0 commit comments

Comments
 (0)