LyteNyte Grid offers comprehensive support for Right-to-Left (RTL) rendering. Simply set the RTL property on the grid state to display all content in RTL mode.
RTL support in LyteNyte Grid is seamlessly implemented as the Grid leverages
logical CSS properties
throughout its codebase. No additional configuration is required beyond setting the rtl
flag
on the grid state.
export function RtlSupport() {
const grid = useLyteNytePro({
rtl: true,
// ... other props
});
}