Followers
0
Following
0
Joined
Last Online
-
twloveduck
Or to make it easy on yourself:
import ui viewSet = set(dir(ui.View)) print(set(dir(ui.ImageView)).difference(viewSet))
It will give you the methods that are unique to the ImageView class and not inherited from View.
It is just{'image', 'load_from_url'}
Everything else is from the View and should be documented there.