Scrollablearea container with textfields and sharingpanel

On my iOS project, I created an edit screen with textfields to edit a user’s details and a SharingPanel to share a generated image.

But when I edit text, the keyboard shows over the lowest textfields. So I added a scrollablearea to scroll with a container holding the textfields.

But how should I pass the user record to the container inside the scrollable area to edit it?

And now I moved the Share button and SharingPanel inside the container, how do I get the current screen to show the panel?

i believe you can cast this:

MyContainerType(myScrollableArea.content)).*

where * is your autocomplete context.