mirror of
https://github.com/MarioSpore/Grinch-AP.git
synced 2025-10-21 20:21:32 -06:00
13 lines
202 B
Python
13 lines
202 B
Python
![]() |
from .layout import Layout
|
||
|
from .widget import Widget
|
||
|
|
||
|
|
||
|
class TabbedPanel(Layout):
|
||
|
pass
|
||
|
|
||
|
|
||
|
class TabbedPanelItem(Widget):
|
||
|
content: Widget
|
||
|
|
||
|
def __init__(self, *, text: str = ...) -> None: ...
|