Hello,
Welcome to Microsoft Q&A!
Try to use a Grid to Wrap label and Entry, create the binding between label and entry (Text , FontSize , WidthRequest), then change the text of the label , the label auto expand and result in the entry expanding .
<Grid >
<Label Text="123" BackgroundColor="Green" x:Name="label" HorizontalOptions="CenterAndExpand" />
<Entry x:Name="entry" BackgroundColor="Red" HorizontalOptions="CenterAndExpand"
BindingContext="{x:Reference label}"
Text="{Binding Text}"
FontSize="{Binding FontSize}"
WidthRequest="{Binding Width}"/>
</Grid>
If the response is helpful, please click "Accept Answer" and upvote it.
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.