This is a collection of developer sample code that we call Scene Graph Developer Extensions (SGDEX). This sample code demonstrates how a developer can use pre-built, reusable Roku Scene Graph (RSG) components to enable rapid development of channels that follow a consistent UX paradigm.
SGDEX views are full screen components. If you've built channels using the legacy Roku SDK this will be familiar to you. Using an SGDEX view saves you the effort of building a screen from scratch using lower level RSG components.
SGDEX includes a robust content manager that makes it easy to connect a view to a content source like a feed or API. Using the content manager saves you the effort of having to manage RSG Task Nodes and helps ensure that your channel will perform well on all Roku devices.
SGDEX includes a component controller that helps manage the views in your channel. Using the component controller saves you the effort of managing the screen stack on your own.
SGDEX also includes components that make it easier to:
Follow these steps to prepare your channel to use SGDEX components:
extentions/SGDEX
folder into your channel so that the path to the folder is pkg:/components/SGDEX
. This path is required for certain graphic elements to work correctly.extentions/SGDEX.brs
into your channel so that the path to the file is pkg:/source/SGDEX.brs
bs_libs_required=roku_ads_lib
You are now ready to use SGDEX components in your channel!