7 lines
132 B
Python
7 lines
132 B
Python
|
from typing import Literal
|
||
|
from .layout import Layout
|
||
|
|
||
|
|
||
|
class BoxLayout(Layout):
|
||
|
orientation: Literal['horizontal', 'vertical']
|