@mikael i think that‘s a question for you ;)
I‘ve got this example code:
```
import ui
import console
from anchors import SafeAreaView
class root(SafeAreaView):
def init(self):
self.background_color = 'blue'
self.name = 'SafeAreaView'
self.add_subview(ui.Button(frame=(2,12,32,32),title='close',action=self.viewClose))
def viewClose(self, sender):
if console.alert('Close View?','','Yes','No',hide_cancel_button=True) is 2:
return
self.close()
s = root()
s.present('fullscreen', hide_title_bar=True)
```
But this don‘t work with the SafeAreaView When i change this to ui.View it works fine..
But why ?