Widget customizations - React Native
There are many different customization options available in order to achieve a look and feel that is truly unique and that matches the theme of your app.
Presets
All the presets are of type BlazeWidgetLayout properties are mutable and could be further modified as needed.
Stories
BlazeStoriesRowView
circleLayout
A BlazeWidgetLayout instance.
Returns a horizontally aligned layout consisting of circle widget items.
The returned layout can be further modified if needed.
example
<BlazeStoriesRowView presetTheme={PresetThemeRowType.CIRCLE} />
rectangleLayout
A BlazeWidgetLayout instance.
Returns a horizontally aligned layout consisting of rectangle widget items.
The returned layout can be further modified if needed.
example
<BlazeStoriesRowView presetTheme={PresetThemeRowType.RECTANGLE} />
BlazeStoriesWidgetGridView
twoColumnGridLayout
A BlazeWidgetLayout instance.
Retuns a vertically aligned grid layout consisting of two columns per row.
The returned layout can be further modified if needed.
example
<BlazeStoriesGridView presetTheme={PresetThemeGridType.TWO} />
threeColumnGridLayout
A BlazeWidgetLayout instance.
Retuns a vertically aligned grid layout consisting of three columns per row.
The returned layout can be further modified if needed.
example
<BlazeStoriesGridView presetTheme={PresetThemeGridType.THREE} />
Moments
BlazeMomentsWidgetRowView
rectangleLayout
A BlazeWidgetLayout instance.
Returns a horizontally aligned layout consisting of rectangle widget items.
The returned layout can be further modified if needed.
example
<BlazeMomentsRowView presetTheme={PresetThemeRowType.RECTANGLE} />
BlazeMomentsWidgetGridView
twoColumnGridLayout
A BlazeWidgetLayout instance.
Retuns a vertically aligned grid layout consisting of two columns per row.
The returned layout can be further modified if needed.
example
<BlazeMomentsGridView presetTheme={PresetThemeGridType.TWO} />
threeColumnGridLayout
A BlazeWidgetLayout instance.
Retuns a vertically aligned grid layout consisting of three columns per row.
The returned layout can be further modified if needed.
example
<BlazeMomentsGridView presetTheme={PresetThemeGridType.THREE} />
Updated 22 days ago
