Skip to content
Snippets Groups Projects
Select Git revision
  • master
  • feature/ita
  • feature/UPDATE_LEAP_DRIVER_TO_SDK_V3
  • feature/volume_raycaster_bindless
  • feature/IMAGES_WITH_OPENVR
  • develop
  • feature/IntegrateNewOculusSDK
  • feature/SimpleOpenGLDraw
  • feature/IMAGES_AND_VIEWPORTS
  • feature/LeapMotionMeasureNameFix
  • feature/observeable_sequenced_notifications
  • feature/BoundingBoxIntentionSelect
  • feature/RenamedVistaTexture
  • feature/QuadBufferPostprocessing
  • feature/conan_io_support
  • release/1.16
  • release/1.15
  • feature/REMOVE_PLUGIN_DLL
  • feature/COH_GRP_TRUNK_INTEGRATE
  • release/1.14
  • 1.16.0
  • Before_OGLExt_CoreLibs_Integration
  • 1.14.0
  • 1.15.0
  • 1.11.0
  • 1.12.0
  • 1.13
  • 1.13.0
  • 1.10.1
  • 1.10.0
30 results

BUILDINFO

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    example_2.py 374 B
    from dashboard.dashboard import *
    
    
    @app.callback(
        Output('layout', 'children'),
        [Input('space', 'n_clicks')],
        [State('layout', 'children')],
    )
    def add_to_layout(n_clicks, children):
        children.append(html.H1('Something', id='something'))
        return children
    
    
    if __name__ == '__main__':
        app.server.run(port=8000, host='127.0.0.1')
        app.run(debug=True)