I have a vertical gallery in power apps
I have A text input , a submit button
and 2 text labels
it looks like this

SO whenever user types any question
and click submit button
the question will be sent to openai
and the response will be received
upto this it is working
but whenever user ask more question
the answer is also getting displayed
but it is not auto scrolling whenever the gallery gets full
my gallery name is questionsCollection
i have this code onselect property of submit button
Set(currentQuestion, TextInput1.Text);
Reset(TextInput1);
UpdateContext({flowResult: chatbot_powerapps_flow.Run(currentQuestion)});
If(!IsBlank(flowResult),
Collect(
questionsCollection,
{
Question: currentQuestion,
Answer: flowResult.text_ans,
Order: Max(questionsCollection, Order) + 1
}
)
)
and in first text label
i have ThisItem.Question
which is used to display question typed by user
second text label
ThisItem.Answer
which is used to display answer from openai api
now i want the gallery to be autoscroll automatically whenever new questions and answers are being added