Skip to content

Commit e850e99

Browse files
authored
Merge pull request #2 from SyncfusionExamples/ArulrajAboo-patch-2
Committed the example project.
2 parents 45d9bda + dc6e7f7 commit e850e99

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+1149
-12
lines changed

README.md

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,17 @@
1-
# myflutterapp
1+
# How to Create Flutter Charts from JSON Data
2+
A quick-start example to help you create a chart from JSON data using the Syncfusion Flutter Chart. You will learn how to load the JSON data and map it to the chart series.
3+
Watch the video: Coming soon...
24

3-
A new Flutter project.
5+
Documentation: https://help.syncfusion.com/flutter/cartesian-charts/getting-started
46

5-
## Getting Started
7+
## Requirements to run the demo
8+
* [VS Code](https://code.visualstudio.com/download)
9+
* [Flutter SDK v3.24.3+](https://flutter.dev/docs/development/tools/sdk/overview)
10+
* [For more development tools] (https://flutter.dev/docs/development/tools/devtools/overview)
611

7-
This project is a starting point for a Flutter application.
12+
## How to run this application
13+
To run this application, you need to first clone or download the ‘How-to-Create-Flutter-Charts-from-JSON-Data’ repository and open it in your preferred IDE. Then, build and run your project to view the output.
814

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.
15+
## Further help
16+
For more help, check the [Syncfusion Flutter documentation] (https://help.syncfusion.com/flutter/introduction/overview) or
17+
[Flutter documentation](https://flutter.dev/docs/get-started/install).

ios/Flutter/AppFrameworkInfo.plist

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>CFBundleDevelopmentRegion</key>
6+
<string>en</string>
7+
<key>CFBundleExecutable</key>
8+
<string>App</string>
9+
<key>CFBundleIdentifier</key>
10+
<string>io.flutter.flutter.app</string>
11+
<key>CFBundleInfoDictionaryVersion</key>
12+
<string>6.0</string>
13+
<key>CFBundleName</key>
14+
<string>App</string>
15+
<key>CFBundlePackageType</key>
16+
<string>FMWK</string>
17+
<key>CFBundleShortVersionString</key>
18+
<string>1.0</string>
19+
<key>CFBundleSignature</key>
20+
<string>????</string>
21+
<key>CFBundleVersion</key>
22+
<string>1.0</string>
23+
<key>MinimumOSVersion</key>
24+
<string>12.0</string>
25+
</dict>
26+
</plist>

ios/Flutter/Debug.xcconfig

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
#include "Generated.xcconfig"

ios/Flutter/Generated.xcconfig

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
// This is a generated file; do not edit or check into version control.
2+
FLUTTER_ROOT=C:\Flutter\flutter
3+
FLUTTER_APPLICATION_PATH=E:\Surge Team\Tutorial Videos\Flutter2\Chart\Flutter-Charts-JSON\Samples\Scripting\myflutterapp
4+
COCOAPODS_PARALLEL_CODE_SIGN=true
5+
FLUTTER_TARGET=lib\main.dart
6+
FLUTTER_BUILD_DIR=build
7+
FLUTTER_BUILD_NAME=1.0.0
8+
FLUTTER_BUILD_NUMBER=1
9+
EXCLUDED_ARCHS[sdk=iphonesimulator*]=i386
10+
EXCLUDED_ARCHS[sdk=iphoneos*]=armv7
11+
DART_OBFUSCATION=false
12+
TRACK_WIDGET_CREATION=true
13+
TREE_SHAKE_ICONS=false
14+
PACKAGE_CONFIG=.dart_tool/package_config.json

ios/Flutter/Release.xcconfig

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
#include "Generated.xcconfig"
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
#!/bin/sh
2+
# This is a generated file; do not edit or check into version control.
3+
export "FLUTTER_ROOT=C:\Flutter\flutter"
4+
export "FLUTTER_APPLICATION_PATH=E:\Surge Team\Tutorial Videos\Flutter2\Chart\Flutter-Charts-JSON\Samples\Scripting\myflutterapp"
5+
export "COCOAPODS_PARALLEL_CODE_SIGN=true"
6+
export "FLUTTER_TARGET=lib\main.dart"
7+
export "FLUTTER_BUILD_DIR=build"
8+
export "FLUTTER_BUILD_NAME=1.0.0"
9+
export "FLUTTER_BUILD_NUMBER=1"
10+
export "DART_OBFUSCATION=false"
11+
export "TRACK_WIDGET_CREATION=true"
12+
export "TREE_SHAKE_ICONS=false"
13+
export "PACKAGE_CONFIG=.dart_tool/package_config.json"

0 commit comments

Comments
 (0)