KinesteX

UI Controls

Control visibility and behavior of UI elements.


ParameterTypeDefaultDescriptionEffect
isHideHeaderMainbooleanfalseHide main headerRemoves the top navigation header
hideFeelingDialogbooleanfalseHide feeling dialogSkips the post-workout feeling prompt
hideMusicIconboolean-Hide music controlRemoves the music toggle button
hideMistakesFeedbackboolean-Hide mistake feedbackDisables on-screen form correction prompts
showModalWarmUpboolean-Show warm-up modalDisplays warm-up recommendation before workout
showSettingsboolean-Show settings buttonDisplays settings access in the UI
isDrawingPoseboolean-Enable pose drawingActivates skeleton visualization on camera feed
isOnboardingbooleantrueEnable onboarding flowShows/hides the initial onboarding experience
hideCompletionOverlaybooleanfalseHide workout completion overlaySkips the workout completion summary screen shown at the end of a workout
preventGestureControlbooleanfalseDisable gesture controlPrevents users from pausing and resuming workouts using hand gestures
disableGuidebooleanfalseDisable onboarding guideSuppresses the guide entirely for embedded contexts where onboarding isn't needed
disableCookiesbooleanfalseDisable all cookiesAutomatically declines all cookies, hides the cookie management button and consent link. Useful for GDPR compliance or privacy-sensitive environments
hideStatisticsHeaderbooleanfalseHide statistics headerHides the header on the workout statistics/results screen
nativeParentScrollbooleanfalseNative scroll delegationDelegates scroll behavior of the statistics screen to the native parent container instead of using internal scroll. Enable if your native app manages its own scrolling
UI Controls Configuration
1// Via customParams
2kinestex.createView(
3    customParams: [
4        "isHideHeaderMain": true,
5        "hideFeelingDialog": true,
6        "hideMusicIcon": true,
7        "hideMistakesFeedback": false,
8        "isOnboarding": false,
9        "hideCompletionOverlay": true,
10        "preventGestureControl": true,
11        "disableGuide": true,
12        "disableCookies": true,
13        "hideStatisticsHeader": false,
14        "nativeParentScroll": false
15    ]
16)