From 4c15aa1dc1eea85701643b0c321c3ad7632901fb Mon Sep 17 00:00:00 2001 From: Duncan Holmes <dholmes4@huskers.unl.edu> Date: Sat, 12 Apr 2025 16:59:56 -0500 Subject: [PATCH] Upload New File --- example_graph_code.kv | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 example_graph_code.kv diff --git a/example_graph_code.kv b/example_graph_code.kv new file mode 100644 index 0000000..d159761 --- /dev/null +++ b/example_graph_code.kv @@ -0,0 +1,20 @@ +<GraphScreen>: + name: "graph" + BoxLayout: + orientation: 'vertical' + + Image: + id: graph_img # This must match the Python code! + allow_stretch: True + keep_ratio: True + texture: root.graph_texture + + Button: + text: "Go Back" + size_hint_y: None + height: "48dp" + on_press: app.stop() + + +ScreenManager: + GraphScreen: \ No newline at end of file -- GitLab