test_gist.py
import ui | |
class MyClass(ui.View): | |
def __init__(self, *args, **kwargs): | |
super().__init__(*args, **kwargs) | |
self.make_view() | |
def make_view(self): | |
pass | |
if __name__ == '__main__': | |
f = (0, 0, 300, 400) | |
v = MyClass(frame=f) | |
v.present(style='sheet', animated=False) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment