We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d236d89 commit 593fee4Copy full SHA for 593fee4
src/pythonnative/scroll_view.py
@@ -19,6 +19,12 @@ def __init__(self) -> None:
19
def add_view(self, view: Any) -> None:
20
pass
21
22
+ @staticmethod
23
+ @abstractmethod
24
+ def wrap(view: Any) -> "ScrollViewBase":
25
+ """Return a new ScrollView containing the provided view as its only child."""
26
+ pass
27
+
28
29
if IS_ANDROID:
30
# ========================================
0 commit comments