> For the complete documentation index, see [llms.txt](https://docs.flatredball.com/gum/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.flatredball.com/gum/gum-tool/gum-elements/skia-standard-elements/shapes-platform-support.md).

# Shapes Platform Support

## Introduction

Shapes (Skia) support varies per platform. See below to see information about your platform.

{% tabs %}
{% tab title="MonoGame/KNI" %}
MonoGame and KNI projects can use the following shapes:

* Arc
* Circle
* Rectangle

The outline (stroke) of Circle and Rectangle renders out of the box. The fill and the richer effects — gradients, drop shadows, and dashed strokes — are provided by the shape support package (`Gum.Shapes.MonoGame` or `Gum.Shapes.KNI`). Without the package those properties are saved but do not draw.

Other types, such as SVG or Lottie, are not currently supported.

For information on adding the shape support package to your project, see the [Shapes](/gum/code/standard-visuals/shapes-apos.shapes.md) page.

{% hint style="info" %}
The older ColoredCircle, RoundedRectangle, and SolidRectangle shapes are being phased out in favor of Circle and Rectangle. They remain available so existing projects keep working, but will be removed in a future release.
{% endhint %}
{% endtab %}

{% tab title="FNA" %}
FNA renders the outline (stroke) of Circle and Rectangle only. The fill and the richer effects (gradients, drop shadows, dashed strokes) are not available on FNA because there is no shape support package for it. We are looking for contributors to help expand FNA shape support.
{% endtab %}

{% tab title="Raylib" %}
Raylib supports Circle and Rectangle — including fill, gradients, and drop shadows — natively, with no extra package required.

{% hint style="info" %}
Gradient-on-outline (a gradient applied to the stroke rather than the fill) is not yet implemented on raylib.
{% endhint %}
{% endtab %}

{% tab title="Skia platforms (Maui, WPF, Silk.NET)" %}
All shape types are fully supported.
{% endtab %}
{% endtabs %}


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.flatredball.com/gum/gum-tool/gum-elements/skia-standard-elements/shapes-platform-support.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
