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 9bf0612 commit a381671Copy full SHA for a381671
tests/testapp/main.py
@@ -75,6 +75,9 @@
75
markup: True
76
text: 'dpi: {}\\ndensity: {}\\nfontscale: {}'.format(Metrics.dpi, Metrics.density, Metrics.fontscale)
77
halign: 'center'
78
+ FixedSizeButton:
79
+ text: 'test ctypes'
80
+ on_press: app.test_ctypes()
81
Widget:
82
size_hint_y: None
83
height: 1000
@@ -131,5 +134,9 @@ def test_pyjnius(self, *args):
131
134
132
135
vibrator.vibrate(1000)
133
136
137
+ def test_ctypes(self, *args):
138
+ import ctypes
139
+
140
141
142
TestApp().run()
0 commit comments