Circle Story

We offer support for circle stories using the FwVideoFeedView widget, which can display a circular thumbnail within a video feed.

Enable Circle Story

Before configuring Circle Story, please refer to the Video Feed View document.

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

// 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.

Last updated

Was this helpful?