cvp
Nov 04, 2019 - 12:16
Same kind of problem as full_screen...
The window of Pythonista is not entirely hidden by the sheet presentation of the view
The gray part is the up part of Pythonista appex view with Edit and Done buttons
import appex
import ui
v = ui.View()
w, h = (540,620)
v.frame = (0,0,w,h)
v.background_color='white'
v.name = 'test in appex'
v.present('sheet')#, hide_title_bar=True)

