> For the complete documentation index, see [llms.txt](https://waoo-app-builder.gitbook.io/waoo-app-builder/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://waoo-app-builder.gitbook.io/waoo-app-builder/nodes/utilities/custom-logic-code.md).

# Custom logic code

Utility nodes

| Condition            | Value  |
| -------------------- | ------ |
| Released in version: | 1.0.13 |
| Flutter/Dart link:   | N/A    |

<figure><img src="https://3643579705-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FzuDhZpUY3uOO3NssfE1O%2Fuploads%2Fqd5a6Ecbsg7HSvFP5pNA%2FCustomLogicCode.png?alt=media&amp;token=0373e6cd-9f6d-4da9-af88-bf5732467090" alt=""><figcaption><p>Custom logic code default node</p></figcaption></figure>

The "Custom logic code" node is a utility node that allows you to add your own code at a particular place in your project. It is extremely useful for adding functionality not yet implemented in Waoo App Builder nodes.

This particular node does not have a Flutter library counterpart since you are free to add whatever code you wish in this field. Therefore, please note that your code will not be sanitized or checked by Waoo App Builder. It will be directly added to the place indicated by you in the code

Imports assigned in this node are added to a Set that avoids duplications per file. This means that if you have two nodes with the same imports, it will be translated in the generated code to a single result.

{% hint style="warning" %}
Try not to overuse this node. The code you enter here will not have any connection with the rest of the nodes and therefore it will be more difficult to maintain your project in the future.
{% endhint %}

**Inputs**

<table><thead><tr><th>Input name</th><th width="150" data-type="checkbox">Canvas Required</th><th width="150">Type</th><th>Description</th></tr></thead><tbody><tr><td>connector</td><td>true</td><td>Flow</td><td>Allows to continue the flow in this node</td></tr><tr><td>customCode</td><td>false</td><td>String</td><td>Custom code to add</td></tr><tr><td>imports</td><td>false</td><td>String</td><td>Imports needed for this code to work correctly</td></tr></tbody></table>

**Outputs**

<table><thead><tr><th>Output name</th><th width="150" data-type="checkbox">Canvas Required</th><th width="150">Type</th><th>Description</th></tr></thead><tbody><tr><td>connector</td><td>true</td><td>Flow</td><td>The flow can continue through this output</td></tr></tbody></table>
