Start reworking design

This commit is contained in:
2025-06-15 15:33:11 +02:00
parent d875119071
commit 2b8f3c8aad
9 changed files with 31 additions and 36 deletions

View File

@@ -1,5 +1,5 @@
from typing import List
from kivy.uix.screenmanager import Screen
from kivymd.uix.screen import MDScreen
from kivy.lang import Builder
from lib.decoder import Decoder
from lib.instructions import Instructions
@@ -13,7 +13,7 @@ from kivy.clock import Clock
name_map = ["a", "b", "c", "t"]
class ProgramScreen(Screen):
class ProgramScreen(MDScreen):
def __init__(self, com: ComSuperClass, **kw):
self._com = com
self._instructions = Instructions(com)