I have the following code in Pydroid. I creates 3D text in Python on Android. I need to make the button bigger.
import asyncio
from vpython import *
scene = canvas()
scene.width = 1600
scene.height = 1600
text(text = "Hello World", align = "center")
def capture_scene():
img = scene.capture("image")
button(bind=capture_scene, text='Download')
asyncio.get_event_loop().run_forever()