⚙️Properties

When you want to override the default settings, you can adjust some of the module's default parameters.

Measurement properties

Take a look at the following platform-specific code snippets to see how to change the default measurement settings for each platform. It's only necessary to provide values for non-default properties. These values should only be changed in exceptional cases.

FibriCheckView(
    fibriCheckViewProperties: FibriCheckViewProperties(
        sampleTime: 60,
        flashEnabled: true,
        gravEnabled: false,
        gyroEnabled: false,
        accEnabled: false,
        rotationEnabled: false,
        movementDetectionEnabled: true,
        fingerDetectionExpiryTime: -1, 
        waitForStartRecordingSignal: false,
        ...,
    ),
    ...
)

Platform-specific properties

Graph Settings

graphBackgroundColor

Determines the graphBackground color. By default there is no background color

graphBackgroundColor: "";

drawGraph

When enabled the component draws a graph of the recorded PPG signal.

drawGraph: true;

lineColor

Determines the color of the graph line.

lineColor: "#63b3a6";

lineThickness

Determines the thickness of the graph line.

lineThickness: 8;

drawBackground

When enabled, the component will draw a background for the graph

drawBackground: true;

Last updated