JSX (dashboard)
The Membrane dashboard uses a custom JSX implementation. This reference page covers all valid elements and styles.
We use flex layout for styling, so your existing mental model from CSS Flexbox should mostly apply here.
Elements
<col>
A vertical container element.
Props
<row>
A horizontal container element.
Props
<text>
A text element.
Props
style?
: accepts text, item, and sizing stylesnumberOfLines?
: dictates maximum number of lines to display before truncating
<string>
A string element for rendering scalar values. Lower level than <text>
.
Props
gref
: reference to the value to be rendered
<button>
A clickable button element.
Props
style?
: accepts container, item, and sizing stylesaction?
: reference (gref) to the action to invoke when clicked
<image>
An image display element.
Props
style?
: accepts container, item, and sizing stylessource?
: reference (gref) to the image URL to display
<embed>
An element for embedding complex data structures.
Props
Sizing styles
width
Element width (px, %, or other CSS units). string | number
height
Element width (px, %, or other CSS units). string | number
Item styles
Styles will apply when an element is an item (aka flex item/child) of a container (aka flex container/parent).
flexShrink
Controls how much an element will shrink relative to others (0.0 to 1.0). number
flexBasis
Sets the initial main size of the element before growing/shrinking. "auto" | string
flexGrow
Controls how much an element will grow relative to others (0.0 to 1.0). number
flexDirection
Sets the direction of the flex container’s main axis. "row" | "row-reverse" | "column" | "column-reverse"
alignSelf
Overrides the alignItems value for this specific element. "start" | "end" | "flex-start" | "flex-end" | "center" | "stretch"
Container styles
background
Background color - “auto” generates a color automatically. "auto" | string
border
Border width. string | number
borderRadius
Border corner radius. string | number
borderColor
Border color - “auto” generates a color automatically. "auto" | string
left
Distance from the left edge. string | number
top
Distance from the top edge. string | number
right
Distance from the right edge. string | number
bottom
Distance from the bottom edge. string | number
padding
Space inside the element between content and border. string | number
margin
Space outside the element between border and adjacent elements. string | number
gap
Space between child elements. string | number
alignItems
Alignment of children along the cross axis. "start" | "end" | "flex-start" | "flex-end" | "center" | "stretch"
justifyContent
Alignment of children along the main axis. "start" | "end" | "flex-start" | "flex-end" | "center" | "space-around" | "space-between" | "stretch"
overflowX
Horizontal overflow behavior. "visible" | "hidden" | "scroll"
overflowY
Vertical overflow behavior. "visible" | "hidden" | "scroll"
Text styles
All sizing and item styles are valid for text elements. Plus:
color
Text color. string
fontSize
Text size - one of predefined sizes. "small" | "medium" | "large" | "x-large"
textAlign
Horizontal text alignment. "left" | "right" | "center"