Skip to content

Commit 0e162d2

Browse files
Merge pull request #1 from PavithraNandhiniRamachandran/master
changes committed
2 parents 11d8d18 + b7db5b2 commit 0e162d2

File tree

6 files changed

+169
-2
lines changed

6 files changed

+169
-2
lines changed

.gitignore

+78
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
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+
# Visual Studio Code related
19+
.vscode/
20+
21+
# Flutter/Dart/Pub related
22+
**/doc/api/
23+
.dart_tool/
24+
.flutter-plugins
25+
.flutter-plugins-dependencies
26+
.packages
27+
.pub-cache/
28+
.pub/
29+
/build/
30+
31+
# Android related
32+
**/android/**/gradle-wrapper.jar
33+
**/android/.gradle
34+
**/android/captures/
35+
**/android/gradlew
36+
**/android/gradlew.bat
37+
**/android/local.properties
38+
**/android/**/GeneratedPluginRegistrant.*
39+
40+
# iOS/XCode related
41+
**/ios/**/*.mode1v3
42+
**/ios/**/*.mode2v3
43+
**/ios/**/*.moved-aside
44+
**/ios/**/*.pbxuser
45+
**/ios/**/*.perspectivev3
46+
**/ios/**/*sync/
47+
**/ios/**/.sconsign.dblite
48+
**/ios/**/.tags*
49+
**/ios/**/.vagrant/
50+
**/ios/**/DerivedData/
51+
**/ios/**/Icon?
52+
**/ios/**/Pods/
53+
**/ios/**/.symlinks/
54+
**/ios/**/profile
55+
**/ios/**/xcuserdata
56+
**/ios/.generated/
57+
**/ios/Flutter/App.framework
58+
**/ios/Flutter/Flutter.framework
59+
**/ios/Flutter/Generated.xcconfig
60+
**/ios/Flutter/app.flx
61+
**/ios/Flutter/app.zip
62+
**/ios/Flutter/flutter_assets/
63+
**/ios/Flutter/flutter_export_environment.sh
64+
**/ios/ServiceDefinitions.json
65+
**/ios/Runner/GeneratedPluginRegistrant.*
66+
67+
# Web related
68+
**/web/**/lib/generated_plugin_registrant.dart
69+
70+
# Service account files
71+
svc-keyfile.json
72+
73+
# Exceptions to above rules.
74+
!**/ios/**/default.mode1v3
75+
!**/ios/**/default.mode2v3
76+
!**/ios/**/default.pbxuser
77+
!**/ios/**/default.perspectivev3
78+
!/packages/flutter_tools/test/data/dart_dependencies_test/**/.packages

README.md

+16-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,16 @@
1-
# render_chart_with_firebase_json_data_flutter_charts
2-
Render Flutter Cartesian chart with Firebase JSON data
1+
# jsonsample
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.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
package com.example.jsonsample
2+
3+
import io.flutter.embedding.android.FlutterActivity
4+
5+
class MainActivity: FlutterActivity() {
6+
}

android/jsonsample_android.iml

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<module type="JAVA_MODULE" version="4">
3+
<component name="FacetManager">
4+
<facet type="android" name="Android">
5+
<configuration>
6+
<option name="ALLOW_USER_CONFIGURATION" value="false" />
7+
<option name="GEN_FOLDER_RELATIVE_PATH_APT" value="/gen" />
8+
<option name="GEN_FOLDER_RELATIVE_PATH_AIDL" value="/gen" />
9+
<option name="MANIFEST_FILE_RELATIVE_PATH" value="/app/src/main/AndroidManifest.xml" />
10+
<option name="RES_FOLDER_RELATIVE_PATH" value="/app/src/main/res" />
11+
<option name="ASSETS_FOLDER_RELATIVE_PATH" value="/app/src/main/assets" />
12+
<option name="LIBS_FOLDER_RELATIVE_PATH" value="/app/src/main/libs" />
13+
<option name="PROGUARD_LOGS_FOLDER_RELATIVE_PATH" value="/app/src/main/proguard_logs" />
14+
</configuration>
15+
</facet>
16+
</component>
17+
<component name="NewModuleRootManager" inherit-compiler-output="true">
18+
<exclude-output />
19+
<content url="file://$MODULE_DIR$">
20+
<sourceFolder url="file://$MODULE_DIR$/app/src/main/java" isTestSource="false" />
21+
<sourceFolder url="file://$MODULE_DIR$/app/src/main/kotlin" isTestSource="false" />
22+
<sourceFolder url="file://$MODULE_DIR$/gen" isTestSource="false" generated="true" />
23+
</content>
24+
<orderEntry type="jdk" jdkName="Android API 25 Platform" jdkType="Android SDK" />
25+
<orderEntry type="sourceFolder" forTests="false" />
26+
<orderEntry type="library" name="Flutter for Android" level="project" />
27+
<orderEntry type="library" name="KotlinJavaRuntime" level="project" />
28+
</component>
29+
</module>

assets/data.json

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
[
2+
{
3+
"year": "Jan",
4+
"sales": 35.0
5+
},
6+
{
7+
"year": "Feb",
8+
"sales": 28.0
9+
},
10+
{
11+
"year": "Mar",
12+
"sales": 34.0
13+
},
14+
{
15+
"year": "Apr",
16+
"sales": 32.0
17+
},
18+
{
19+
"year": "May",
20+
"sales": 40.0
21+
}
22+
]

jsonsample.iml

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<module type="JAVA_MODULE" version="4">
3+
<component name="NewModuleRootManager" inherit-compiler-output="true">
4+
<exclude-output />
5+
<content url="file://$MODULE_DIR$">
6+
<sourceFolder url="file://$MODULE_DIR$/lib" isTestSource="false" />
7+
<sourceFolder url="file://$MODULE_DIR$/test" isTestSource="true" />
8+
<excludeFolder url="file://$MODULE_DIR$/.dart_tool" />
9+
<excludeFolder url="file://$MODULE_DIR$/.idea" />
10+
<excludeFolder url="file://$MODULE_DIR$/.pub" />
11+
<excludeFolder url="file://$MODULE_DIR$/build" />
12+
</content>
13+
<orderEntry type="sourceFolder" forTests="false" />
14+
<orderEntry type="library" name="Dart SDK" level="project" />
15+
<orderEntry type="library" name="Flutter Plugins" level="project" />
16+
<orderEntry type="library" name="Dart Packages" level="project" />
17+
</component>
18+
</module>

0 commit comments

Comments
 (0)