Skip to content

Commit ef7b5af

Browse files
Merge pull request #804 from Syncfusion-Content/development
DOCINFRA-2341_merged_using_automation
2 parents ae3053b + 495dac7 commit ef7b5af

File tree

17 files changed

+157
-347
lines changed

17 files changed

+157
-347
lines changed

Flutter/DateRangePicker/how-to/custom-widget-on-flutterflow.md

Lines changed: 9 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
layout: post
3-
title: DateRangePicker widget in FlutterFlow framework | Syncfusion
4-
description: You can learn here all about adding Syncfusion Flutter DateRangePicker (SfDateRangePicker ) widget in FlutterFlow framework.
3+
title: DateRangePicker Widget in FlutterFlow framework | Syncfusion
4+
description: You can learn here all about adding Syncfusion Flutter DateRangePicker ( SfDateRangePicker ) widget in FlutterFlow framework.
55
platform: flutter
66
control: SfDateRangePicker
77
documentation: ug
@@ -20,9 +20,9 @@ Navigate to the [FlutterFlow dashboard](https://app.flutterflow.io/dashboard) an
2020
### Creating the custom widget
2121

2222
1. Navigate to the `Custom Code` section in the left side navigation menu.
23-
2. Click on the `+ Add` button to open a dropdown menu. From there, select `Widget`.
23+
2. Click on the `+ Add` button to open a dropdown menu, then select `Widget`.
2424
3. Update the widget name as desired.
25-
4. Click on the `View Boilerplate Code` button on the right side, represented by this icon `[</>]`.
25+
4. Click the `View Boilerplate Code` button on the right side, represented by this icon `[</>]`.
2626
5. A popup will appear with startup code; locate the button labeled `</> Copy to Editor` and click on it.
2727
6. Save the widget.
2828

@@ -35,36 +35,31 @@ Navigate to the [FlutterFlow dashboard](https://app.flutterflow.io/dashboard) an
3535
![Version](how-to-section-images/copy-version.png)
3636
3. Paste the copied dependency into the text editor, then click `Refresh` and `Save` it.
3737

38-
>**Note**: The live version of [Syncfusion Flutter DatePicker](https://pub.dev/packages/syncfusion_flutter_datepicker) has been migrated to the latest version of Flutter SDK. To ensure compatibility, please check [FlutterFlow](https://app.flutterflow.io/dashboard)'s current Flutter version and obtain the corresponding version of [Syncfusion Flutter DatePicker](https://pub.dev/packages/syncfusion_flutter_datepicker) by referring to the [SDK compatibility](https://help.syncfusion.com/flutter/system-requirements#sdk-version-compatibility).
38+
>**Note**: The live version of [Syncfusion Flutter DatePicker](https://pub.dev/packages/syncfusion_flutter_datepicker) has been migrated to the latest version of Flutter SDK. To ensure compatibility, check [FlutterFlow](https://app.flutterflow.io/dashboard)'s current Flutter version and obtain the corresponding version of [Syncfusion Flutter DatePicker](https://pub.dev/packages/syncfusion_flutter_datepicker) by referring to the [SDK compatibility](https://help.syncfusion.com/flutter/system-requirements#sdk-version-compatibility).
3939
4040
![Dependency](how-to-section-images/dependency.png)
4141

4242
>**Note**: If you are using an older version of a dependency instead of the latest one, remove the caret symbol (^) prefix in the version number after pasting the dependency. For example, change `^21.3.0` to `21.3.0`.
43+
4344
>**Note**: Since [Syncfusion Flutter DatePicker](https://pub.dev/packages/syncfusion_flutter_datepicker) depends on the [Syncfusion Flutter Core](https://pub.dev/packages/syncfusion_flutter_core) package, make sure to add it as a dependency following the same steps mentioned above.
4445
4546
### Import the package
4647

4748
1. Navigate to the `Installing` tab on the [Syncfusion Flutter DatePicker](https://pub.dev/packages/syncfusion_flutter_datepicker) page. Under the `Import it` section, copy the package import statement.
48-
4949
![Package](how-to-section-images/copy-package.png)
50-
5150
2. Paste the copied import statement into the code editor and then `Save` it.
52-
5351
![Import](how-to-section-images/import-package-flutterflow.png)
5452

5553
### Add widget code snippet in code editor
5654

5755
1. Navigate to the [Example](https://pub.dev/packages/syncfusion_flutter_datepicker/example) tab in [Syncfusion Flutter DatePicker](https://pub.dev/packages/syncfusion_flutter_datepicker) and copy the widget specific codes.
58-
5956
![Code](how-to-section-images/code-snippet.png)
60-
61-
3. Paste the copied code snippet into the code editor, click `Format Code`, and `Save` it.
62-
57+
2. Paste the copied code sample into the code editor, click `Format Code`, and `Save` it.
6358
![Code snippet](how-to-section-images/Adding-code-snippent.png)
6459

6560
### Compiling the codes
6661

67-
1. Click on the 'Compile Code' button located in the top right corner.
62+
1. Click the 'Compile Code' button located in the top right corner.
6863
2. If there are no errors, save the process. If errors are present, fix them and compile the code again. Once the code has been successfully compiled, save the process.
6964

7065
![Compile code](how-to-section-images/compile-code.png)
@@ -75,6 +70,6 @@ Navigate to the [FlutterFlow dashboard](https://app.flutterflow.io/dashboard) an
7570

7671
1. Navigate to `Widget Palette` located in the left side navigation menu.
7772
2. Click on the `Componenets` tab.
78-
3. Under `Custom Code Widgets`, your custom widget will be there. Now, the custom widget can be added to your page by drag-and-drop.
73+
3. Your custom widget will be under `Custom Code Widgets`. Drag and drop the custom widget to your page.
7974

8075
![Page](how-to-section-images/page.png)

Flutter/barcode/how-to/custom-widget-on-flutterflow.md

Lines changed: 9 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
layout: post
3-
title: Barcodes widget in FlutterFlow | Syncfusion
4-
description: You can learn here all about how to adding Syncfusion Flutter Barcodes (SfBarcodeGenerator) widget in FlutterFlow.
3+
title: Barcodes Widget in FlutterFlow | Syncfusion
4+
description: You can learn here all about adding Syncfusion Flutter Barcodes (SfBarcodeGenerator) widget in FlutterFlow.
55
platform: flutter
66
control: SfBarcodeGenerator
77
documentation: ug
@@ -20,9 +20,9 @@ Navigate to the [FlutterFlow dashboard](https://app.flutterflow.io/dashboard) an
2020
### Creating the custom widget
2121

2222
1. Navigate to the `Custom Code` section in the left side navigation menu.
23-
2. Click on the `+ Add` button to open a dropdown menu. From there, select `Widget`.
23+
2. Click on the `+ Add` button to open a dropdown menu, then select `Widget`.
2424
3. Update the widget name as desired.
25-
4. Click on the `View Boilerplate Code` button on the right side, represented by this icon `[</>]`.
25+
4. Click the `View Boilerplate Code` button on the right side, represented by this icon `[</>]`.
2626
5. A popup will appear with startup code; locate the button labeled `</> Copy to Editor` and click on it.
2727
6. Save the widget.
2828

@@ -35,36 +35,31 @@ Navigate to the [FlutterFlow dashboard](https://app.flutterflow.io/dashboard) an
3535
![Version](how-to-section-images/copy-version.png)
3636
3. Paste the copied dependency into the text editor, then click `Refresh` and `Save` it.
3737

38-
>**Note**: The live version of [Syncfusion Flutter Barcodes](https://pub.dev/packages/syncfusion_flutter_barcodes) has been migrated to the latest version of Flutter SDK. To ensure compatibility, please check [FlutterFlow](https://app.flutterflow.io/dashboard)'s current Flutter version and obtain the corresponding version of [Syncfusion Flutter Barcodes](https://pub.dev/packages/syncfusion_flutter_barcodes) by referring to the [SDK compatibility](https://help.syncfusion.com/flutter/system-requirements#sdk-version-compatibility).
38+
>**Note**: The live version of [Syncfusion Flutter Barcodes](https://pub.dev/packages/syncfusion_flutter_barcodes) has been migrated to the latest version of Flutter SDK. To ensure compatibility, check [FlutterFlow](https://app.flutterflow.io/dashboard)'s current Flutter version and obtain the corresponding version of [Syncfusion Flutter Barcodes](https://pub.dev/packages/syncfusion_flutter_barcodes) by referring to the [SDK compatibility](https://help.syncfusion.com/flutter/system-requirements#sdk-version-compatibility).
3939
4040
![Dependency](how-to-section-images/dependency.png)
4141

4242
>**Note**: If you are using an older version of a dependency instead of the latest one, remove the caret symbol (^) prefix in the version number after pasting the dependency. For example, change `^21.3.0` to `21.3.0`.
43+
4344
>**Note**: Since [Syncfusion Flutter Barcodes](https://pub.dev/packages/syncfusion_flutter_barcodes) depends on the [Syncfusion Flutter Core](https://pub.dev/packages/syncfusion_flutter_core) package, make sure to add it as a dependency following the same steps mentioned above.
4445
4546
### Import the package
4647

4748
1. Navigate to the `Installing` tab on the [Syncfusion Flutter Barcodes](https://pub.dev/packages/syncfusion_flutter_barcodes) page. Under the `Import it` section, copy the package import statement.
48-
4949
![Package](how-to-section-images/copy-package.png)
50-
5150
2. Paste the copied import statement into the code editor and then `Save` it.
52-
5351
![Import](how-to-section-images/import-package-flutterflow.png)
5452

5553
### Add widget code snippet in code editor
5654

5755
1. Navigate to the [Example](https://pub.dev/packages/syncfusion_flutter_barcodes/example) tab in [Syncfusion Flutter Barcodes](https://pub.dev/packages/syncfusion_flutter_barcodes) and copy the widget specific codes.
58-
5956
![Code](how-to-section-images/code-snippet.png)
60-
61-
3. Paste the copied code snippet into the code editor, click `Format Code`, and `Save` it.
62-
57+
2. Paste the copied code sample into the code editor, click `Format Code`, and `Save` it.
6358
![Code snippet](how-to-section-images/Adding-code-snippent.png)
6459

6560
### Compiling the codes
6661

67-
1. Click on the 'Compile Code' button located in the top right corner.
62+
1. Click the 'Compile Code' button located in the top right corner.
6863
2. If there are no errors, save the process. If errors are present, fix them and compile the code again. Once the code has been successfully compiled, save the process.
6964

7065
![Compile code](how-to-section-images/compile-code.png)
@@ -75,6 +70,6 @@ Navigate to the [FlutterFlow dashboard](https://app.flutterflow.io/dashboard) an
7570

7671
1. Navigate to `Widget Palette` located in the left side navigation menu.
7772
2. Click on the `Componenets` tab.
78-
3. Under `Custom Code Widgets`, your custom widget will be there. Now, the custom widget can be added to your page by drag-and-drop.
73+
3. Your custom widget will be under `Custom Code Widgets`. Drag and drop the custom widget to your page.
7974

8075
![Page](how-to-section-images/page.png)

Flutter/calendar/how-to/custom-widget-on-flutterflow.md

Lines changed: 9 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
layout: post
3-
title: Calendar widget in FlutterFlow | Syncfusion
4-
description: You can learn here all about how to adding Syncfusion Flutter Calendar (SfCalendar) widget in FlutterFlow.
3+
title: Calendar Widget in FlutterFlow | Syncfusion
4+
description: You can learn here all about adding Syncfusion Flutter Calendar ( SfCalendar Widget ) widget in FlutterFlow.
55
platform: flutter
66
control: SfCalendar
77
documentation: ug
@@ -20,9 +20,9 @@ Navigate to the [FlutterFlow dashboard](https://app.flutterflow.io/dashboard) an
2020
### Creating the custom widget
2121

2222
1. Navigate to the `Custom Code` section in the left side navigation menu.
23-
2. Click on the `+ Add` button to open a dropdown menu. From there, select `Widget`.
23+
2. Click on the `+ Add` button to open a dropdown menu, then select `Widget`.
2424
3. Update the widget name as desired.
25-
4. Click on the `View Boilerplate Code` button on the right side, represented by this icon `[</>]`.
25+
4. Click the `View Boilerplate Code` button on the right side, represented by this icon `[</>]`.
2626
5. A popup will appear with startup code; locate the button labeled `</> Copy to Editor` and click on it.
2727
6. Save the widget.
2828

@@ -35,36 +35,31 @@ Navigate to the [FlutterFlow dashboard](https://app.flutterflow.io/dashboard) an
3535
![Version](how-to-section-images/copy-version.png)
3636
3. Paste the copied dependency into the text editor, then click `Refresh` and `Save` it.
3737

38-
>**Note**: The live version of [Syncfusion Flutter Calendar](https://pub.dev/packages/syncfusion_flutter_calendar) has been migrated to the latest version of Flutter SDK. To ensure compatibility, please check [FlutterFlow](https://app.flutterflow.io/dashboard)'s current Flutter version and obtain the corresponding version of [Syncfusion Flutter Calendar](https://pub.dev/packages/syncfusion_flutter_calendar) by referring to the [SDK compatibility](https://help.syncfusion.com/flutter/system-requirements#sdk-version-compatibility).
38+
>**Note**: The live version of [Syncfusion Flutter Calendar](https://pub.dev/packages/syncfusion_flutter_calendar) has been migrated to the latest version of Flutter SDK. To ensure compatibility, check [FlutterFlow](https://app.flutterflow.io/dashboard)'s current Flutter version and obtain the corresponding version of [Syncfusion Flutter Calendar](https://pub.dev/packages/syncfusion_flutter_calendar) by referring to the [SDK compatibility](https://help.syncfusion.com/flutter/system-requirements#sdk-version-compatibility).
3939
4040
![Dependency](how-to-section-images/dependency.png)
4141

4242
>**Note**: If you are using an older version of a dependency instead of the latest one, remove the caret symbol (^) prefix in the version number after pasting the dependency. For example, change `^21.3.0` to `21.3.0`.
43+
4344
>**Note**: Since [Syncfusion Flutter Calendar](https://pub.dev/packages/syncfusion_flutter_calendar) depends on the [Syncfusion Flutter Core](https://pub.dev/packages/syncfusion_flutter_core) package, make sure to add it as a dependency following the same steps mentioned above.
4445
4546
### Import the package
4647

4748
1. Navigate to the `Installing` tab on the [Syncfusion Flutter Calendar](https://pub.dev/packages/syncfusion_flutter_calendar) page. Under the `Import it` section, copy the package import statement.
48-
4949
![Package](how-to-section-images/copy-package.png)
50-
5150
2. Paste the copied import statement into the code editor and then `Save` it.
52-
5351
![Import](how-to-section-images/import-package-flutterflow.png)
5452

5553
### Add widget code snippet in code editor
5654

5755
1. Navigate to the [Example](https://pub.dev/packages/syncfusion_flutter_calendar/example) tab in [Syncfusion Flutter Calendar](https://pub.dev/packages/syncfusion_flutter_calendar) and copy the widget specific codes.
58-
5956
![Code](how-to-section-images/code-snippet.png)
60-
61-
3. Paste the copied code snippet into the code editor, click `Format Code`, and `Save` it.
62-
57+
2. Paste the copied code sample into the code editor, click `Format Code`, and `Save` it.
6358
![Code snippet](how-to-section-images/Adding-code-snippent.png)
6459

6560
### Compiling the codes
6661

67-
1. Click on the 'Compile Code' button located in the top right corner.
62+
1. Click the 'Compile Code' button located in the top right corner.
6863
2. If there are no errors, save the process. If errors are present, fix them and compile the code again. Once the code has been successfully compiled, save the process.
6964

7065
![Compile code](how-to-section-images/compile-code.png)
@@ -75,6 +70,6 @@ Navigate to the [FlutterFlow dashboard](https://app.flutterflow.io/dashboard) an
7570

7671
1. Navigate to `Widget Palette` located in the left side navigation menu.
7772
2. Click on the `Componenets` tab.
78-
3. Under `Custom Code Widgets`, your custom widget will be there. Now, the custom widget can be added to your page by drag-and-drop.
73+
3. Your custom widget will be under `Custom Code Widgets`. Drag and drop the custom widget to your page.
7974

8075
![Page](how-to-section-images/page.png)

Flutter/cartesian-charts/how-to/custom-widget-on-flutterflow.md

Lines changed: 9 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
layout: post
3-
title: Cartesian Charts widget in FlutterFlow | Syncfusion
4-
description: Learn here all about adding Syncfusion Cartesian Charts widget in FlutterFlow.
3+
title: Cartesian Charts Widget in FlutterFlow | Syncfusion
4+
description: Learn here all about adding Syncfusion Flutter Cartesian Charts (SfCartesianChart) widget in FlutterFlow.
55
platform: flutter
66
control: Chart
77
documentation: ug
@@ -20,9 +20,9 @@ Navigate to the [FlutterFlow dashboard](https://app.flutterflow.io/dashboard) an
2020
### Creating the custom widget
2121

2222
1. Navigate to the `Custom Code` section in the left side navigation menu.
23-
2. Click on the `+ Add` button to open a dropdown menu. From there, select `Widget`.
23+
2. Click on the `+ Add` button to open a dropdown menu, then select `Widget`.
2424
3. Update the widget name as desired.
25-
4. Click on the `View Boilerplate Code` button on the right side, represented by this icon `[</>]`.
25+
4. Click the `View Boilerplate Code` button on the right side, represented by this icon `[</>]`.
2626
5. A popup will appear with startup code; locate the button labeled `</> Copy to Editor` and click on it.
2727
6. Save the widget.
2828

@@ -35,36 +35,31 @@ Navigate to the [FlutterFlow dashboard](https://app.flutterflow.io/dashboard) an
3535
![Version](how-to-section-images/copy-version.png)
3636
3. Paste the copied dependency into the text editor, then click `Refresh` and `Save` it.
3737

38-
>**Note**: The live version of [Syncfusion Flutter Charts](https://pub.dev/packages/syncfusion_flutter_charts) has been migrated to the latest version of Flutter SDK. To ensure compatibility, please check [FlutterFlow](https://app.flutterflow.io/dashboard)'s current Flutter version and obtain the corresponding version of [Syncfusion Flutter Charts](https://pub.dev/packages/syncfusion_flutter_charts) by referring to the [SDK compatibility](https://help.syncfusion.com/flutter/system-requirements#sdk-version-compatibility).
38+
>**Note**: The live version of [Syncfusion Flutter Charts](https://pub.dev/packages/syncfusion_flutter_charts) has been migrated to the latest version of Flutter SDK. To ensure compatibility, check [FlutterFlow](https://app.flutterflow.io/dashboard)'s current Flutter version and obtain the corresponding version of [Syncfusion Flutter Charts](https://pub.dev/packages/syncfusion_flutter_charts) by referring to the [SDK compatibility](https://help.syncfusion.com/flutter/system-requirements#sdk-version-compatibility).
3939
4040
![Dependency](how-to-section-images/dependency.png)
4141

4242
>**Note**: If you are using an older version of a dependency instead of the latest one, remove the caret symbol (^) prefix in the version number after pasting the dependency. For example, change `^21.3.0` to `21.3.0`.
43+
4344
>**Note**: Since [Syncfusion Flutter Charts](https://pub.dev/packages/syncfusion_flutter_charts) depends on the [Syncfusion Flutter Core](https://pub.dev/packages/syncfusion_flutter_core) package, make sure to add it as a dependency following the same steps mentioned above.
4445
4546
### Import the package
4647

4748
1. Navigate to the `Installing` tab on the [Syncfusion Flutter Charts](https://pub.dev/packages/syncfusion_flutter_charts) page. Under the `Import it` section, copy the package import statement.
48-
4949
![Package](how-to-section-images/copy-package.png)
50-
5150
2. Paste the copied import statement into the code editor and then `Save` it.
52-
5351
![Import](how-to-section-images/import-package-flutterflow.png)
5452

5553
### Add widget code snippet in code editor
5654

5755
1. Navigate to the [Example](https://pub.dev/packages/syncfusion_flutter_charts/example) tab in [Syncfusion Flutter Charts](https://pub.dev/packages/syncfusion_flutter_charts) and copy the widget specific codes.
58-
5956
![Code](how-to-section-images/code-snippet.png)
60-
61-
3. Paste the copied code snippet into the code editor, click `Format Code`, and `Save` it.
62-
57+
2. Paste the copied code sample into the code editor, click `Format Code`, and `Save` it.
6358
![Code snippet](how-to-section-images/Adding-code-snippent.png)
6459

6560
### Compiling the codes
6661

67-
1. Click on the 'Compile Code' button located in the top right corner.
62+
1. Click the 'Compile Code' button located in the top right corner.
6863
2. If there are no errors, save the process. If errors are present, fix them and compile the code again. Once the code has been successfully compiled, save the process.
6964

7065
![Compile code](how-to-section-images/compile-code.png)
@@ -75,6 +70,6 @@ Navigate to the [FlutterFlow dashboard](https://app.flutterflow.io/dashboard) an
7570

7671
1. Navigate to `Widget Palette` located in the left side navigation menu.
7772
2. Click on the `Componenets` tab.
78-
3. Under `Custom Code Widgets`, your custom widget will be there. Now, the custom widget can be added to your page by drag-and-drop.
73+
3. Your custom widget will be under `Custom Code Widgets`. Drag and drop the custom widget to your page.
7974

8075
![Page](how-to-section-images/page.png)

0 commit comments

Comments
 (0)