UI Color & Theme
This section covers how to customize how Luciq appears in your app in order to match your design and brand palette for React Native apps.
Last updated
This section covers how to customize how Luciq appears in your app in order to match your design and brand palette for React Native apps.
Last updated
Import Luciq, { ColorTheme } from '@luciq/react-native';
Luciq.setColorTheme(ColorTheme.dark);ColorTheme.light
ColorTheme.darkimport { processColor } from 'react-native';
Luciq.setPrimaryColor('#ff0000');Luciq.setFloatingButtonEdge(Luciq.floatingButtonEdge.right, 250);import { RecordingButtonPosition } from '@luciq/react-native';
BugReporting.setVideoRecordingFloatingButtonPosition(RecordingButtonPosition.topLeft);RecordingButtonPosition.topLeft
RecordingButtonPosition.topRight
RecordingButtonPosition.bottomLeft
RecordingButtonPosition.bottomRight