Skip to content

Instantly share code, notes, and snippets.

@randyzwitch
Created March 4, 2020 18:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save randyzwitch/f7f07b44ea8173e9ceb08819dd88a9e3 to your computer and use it in GitHub Desktop.
Save randyzwitch/f7f07b44ea8173e9ceb08819dd88a9e3 to your computer and use it in GitHub Desktop.
Dash layout of OmniSci F1 dashboard
app = dash.Dash(__name__, external_stylesheets = [dbc.themes.DARKLY])
app.title = "OmniSci Grand Prix | Converge 2019"
app.config['suppress_callback_exceptions'] = True
server = app.server
body = dbc.Container([
dbc.Row([track, leaderboard]),
dbc.Row([telemetry, menubox])
],
className="mt-4",
fluid=True
)
app.layout = html.Div([navbar, body])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment