> For the complete documentation index, see [llms.txt](https://docs.firework.com/firework-for-developers/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.firework.com/firework-for-developers/android-sdk/integration-guide/configure-video-feed/circle-story.md).

# Circle Story

## Enable Circle Story

Before configuring Circle Story, please refer to the Video Feed View [document](/firework-for-developers/android-sdk/integration-guide/configure-video-feed.md).

To enable the circle story, configure `circleShape` field in viewOptions.

```kts
// Some code
fwVideoFeedView =
	fwVideoFeedView {
	    viewOptions {
	    	......
	        layoutOptions {
	            circleShape(true) // Set to true to enable circle shape items
	        }
	        ......
	    }
	}
```

**Important Notes:**

1. The circle story is available exclusively with the `feedLayout` set to `FeedLayout.Horizontal` when configuring layoutOptions.
2. When circleShape is set to true, the `roundedCorner`, `roundedCornerRadius`, and `aspectRatio` options in `layoutOptions` will become ineffective, even if specified.
