App text elements

Create text elements inside app elements.

Running this example

To run this example locally:

  1. If you haven't already, create a new app in the Developer Portal(opens in a new tab or window). For more information, refer to our Quickstart guide.

  2. In your app's configuration on the Developer Portal(opens in a new tab or window), ensure the "Development URL" is set to http://localhost:8080.

  3. Clone the starter kit:

    git clone https://github.com/canva-sdks/canva-apps-sdk-starter-kit.git
    cd canva-apps-sdk-starter-kit
    SHELL
  4. Install dependencies:

    npm install
    SHELL
  5. Run the example:

    npm run start app_text_elements
    SHELL
  6. Click the Preview URL link shown in the terminal to open the example in the Canva editor.

Example app source code

// For usage information, see the README.md file.
import {
Button,
ColorSelector,
FormField,
NumberInput,
RadioGroup,
Rows,
Select,
Text,
TextInput,
Title,
} from "@canva/app-ui-kit";
import type {
AppElementOptions,
FontWeight,
TextAttributes,
} from "@canva/design";
import { initAppElement } from "@canva/design";
import { useEffect, useState } from "react";
import * as styles from "styles/components.css";
type AppElementData = {
text: string;
color: string;
fontWeight: FontWeight;
fontStyle: TextAttributes["fontStyle"];
decoration: TextAttributes["decoration"];
textAlign: TextAttributes["textAlign"];
width: number;
rotation: number;
useCustomWidth: boolean;
};
type AppElementChangeEvent = {
data: AppElementData;
update?: (opts: AppElementOptions<AppElementData>) => Promise<void>;
};
const initialState: AppElementChangeEvent = {
data: {
text: "Hello world",
color: "#ff0099",
fontWeight: "normal",
fontStyle: "normal",
decoration: "none",
textAlign: "start",
width: 250,
rotation: 0,
useCustomWidth: false,
},
};
const appElementClient = initAppElement<AppElementData>({
render: (data) => {
return [
{
type: "text",
top: 0,
left: 0,
...data,
width: data.useCustomWidth ? data.width : undefined,
children: [data.text],
},
];
},
});
export const App = () => {
const [state, setState] = useState<AppElementChangeEvent>(initialState);
const {
data: {
text,
color,
fontWeight,
fontStyle,
decoration,
textAlign,
width,
rotation,
useCustomWidth,
},
} = state;
const disabled = text.trim().length < 1 || color.trim().length < 1;
useEffect(() => {
appElementClient.registerOnElementChange((appElement) => {
setState(
appElement
? {
data: appElement.data,
update: appElement.update,
}
: initialState,
);
});
}, []);
return (
<div className={styles.scrollContainer}>
<Rows spacing="2u">
<Text>
This example demonstrates how apps can create text elements inside app
elements. Using an app element makes the text element re-editable and
lets apps control additional properties, such as the width and height.
</Text>
<FormField
label="Text"
value={text}
control={(props) => (
<TextInput
{...props}
onChange={(value) => {
setState((prevState) => {
return {
...prevState,
data: {
...prevState.data,
text: value,
},
};
});
}}
/>
)}
/>
<Title size="small">Custom options</Title>
<FormField
label="Color"
control={() => (
<ColorSelector
color={color}
onChange={(value) => {
setState((prevState) => {
return {
...prevState,
data: {
...prevState.data,
color: value,
},
};
});
}}
/>
)}
/>
<FormField
label="Font style"
value={fontStyle}
control={(props) => (
<Select<TextAttributes["fontStyle"]>
{...props}
options={[
{ value: "normal", label: "Normal" },
{ value: "italic", label: "Italic" },
]}
onChange={(value) => {
setState((prevState) => {
return {
...prevState,
data: {
...prevState.data,
fontStyle: value,
},
};
});
}}
stretch
/>
)}
/>
<FormField
label="Font weight"
value={fontWeight}
control={(props) => (
<Select<FontWeight>
{...props}
options={[
{ value: "normal", label: "Normal" },
{ value: "thin", label: "Thin" },
{ value: "extralight", label: "Extra light" },
{ value: "light", label: "Light" },
{ value: "medium", label: "Medium" },
{ value: "semibold", label: "Semibold" },
{ value: "bold", label: "Bold" },
{ value: "heavy", label: "Heavy" },
]}
onChange={(value) => {
setState((prevState) => {
return {
...prevState,
data: {
...prevState.data,
fontWeight: value,
},
};
});
}}
stretch
/>
)}
/>
<FormField
label="Decoration"
value={decoration}
control={(props) => (
<Select<TextAttributes["decoration"]>
{...props}
options={[
{ value: "none", label: "None" },
{ value: "underline", label: "Underline" },
]}
onChange={(value) => {
setState((prevState) => {
return {
...prevState,
data: {
...prevState.data,
decoration: value,
},
};
});
}}
stretch
/>
)}
/>
<FormField
label="Text align"
value={textAlign}
control={(props) => (
<Select<TextAttributes["textAlign"]>
{...props}
options={[
{ value: "start", label: "Start" },
{ value: "center", label: "Center" },
{ value: "end", label: "End" },
]}
onChange={(value) => {
setState((prevState) => {
return {
...prevState,
data: {
...prevState.data,
textAlign: value,
},
};
});
}}
stretch
/>
)}
/>
<FormField
label="Width"
value={useCustomWidth}
control={(props) => (
<RadioGroup
{...props}
options={[
{
label: "Fit to content",
value: false,
},
{
label: "Use custom width",
value: true,
},
]}
onChange={(value) => {
setState((prevState) => {
return {
...prevState,
data: {
...prevState.data,
useCustomWidth: value,
},
};
});
}}
/>
)}
/>
{useCustomWidth ? (
<FormField
label="Width"
value={width}
control={(props) => (
<NumberInput
{...props}
min={1}
onChange={(value) => {
setState((prevState) => {
return {
...prevState,
data: {
...prevState.data,
width: Number(value || 1),
},
};
});
}}
/>
)}
/>
) : undefined}
<FormField
label="Rotation"
value={rotation}
control={(props) => (
<NumberInput
{...props}
min={-180}
max={180}
onChange={(value) => {
setState((prevState) => {
return {
...prevState,
data: {
...prevState.data,
rotation: Number(value || 0),
},
};
});
}}
/>
)}
/>
<Button
variant="primary"
onClick={() => {
if (state.update) {
state.update({ data: state.data });
} else {
appElementClient.addElement({ data: state.data });
}
}}
disabled={disabled}
stretch
>
{`${state.update ? "Update" : "Add"} text`}
</Button>
</Rows>
</div>
);
};
TYPESCRIPT
import { AppUiProvider } from "@canva/app-ui-kit";
import { createRoot } from "react-dom/client";
import { App } from "./app";
import "@canva/app-ui-kit/styles.css";
const root = createRoot(document.getElementById("root") as Element);
function render() {
root.render(
<AppUiProvider>
<App />
</AppUiProvider>,
);
}
render();
if (module.hot) {
module.hot.accept("./app", render);
}
TYPESCRIPT
# App text elements
Demonstrates how to create text elements inside app elements with comprehensive styling controls including color, font weight, style, decoration, alignment, and dimensions. Shows text formatting within re-editable app elements.
For API reference docs and instructions on running this example, see: https://www.canva.dev/docs/apps/examples/app-text-elements/.
Related examples: See design_elements/text_elements for direct text insertion, or assets_and_media/fonts for advanced font selection patterns.
NOTE: This example differs from what is expected for public apps to pass a Canva review:
- Text content and styling options are hardcoded for demonstration purposes only. Production apps should provide user input interfaces or dynamic content loading and implement comprehensive text editing interfaces with proper font selection
- Internationalization is not implemented. Production apps must support multiple languages using the `@canva/app-i18n-kit` package to pass Canva review requirements
- Accessibility features are simplified for demonstration. Production apps must meet WCAG 2.0 AA standards with proper keyboard navigation and ARIA labels
MARKDOWN

API Reference

Need Help?