Forum Archive

330018: view does not hide Pythonista in appex mode

cvp

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)    

tomkirn

Hi,

can confirm this behavior, but unfortunately without solution. Seems to be a mathematical problem while calculating the views position.

@OMZ: can you please fix this?

Regards
Tom

cvp

More visible without title and a transparent background...