Hi their,
Please review following code
Below Code Works Fine
<FlexLayout Direction="Row">
<syncInput:SfMaskedEntry Mask="00/00/0000" Keyboard="Numeric" HorizontalTextAlignment="Center"
Value="{Binding TempVDate, Mode=TwoWay}" ClearButtonVisibility="Never"/>
<Entry Text="{Binding Info.BNo, Mode=TwoWay}" TextTransform="Uppercase" MaxLength="25"/>
</FlexLayout>
Whereas this code breaks the application
<FlexLayout Direction="Row">
<synCore:SfTextInputLayout FlexLayout.Basis="80" Hint="Date">
<syncInput:SfMaskedEntry Mask="00/00/0000" Keyboard="Numeric" HorizontalTextAlignment="Center"
Value="{Binding TempVDate, Mode=TwoWay}" ClearButtonVisibility="Never"/>
</synCore:SfTextInputLayout>
<synCore:SfTextInputLayout FlexLayout.Basis="100" Hint="Invoice No.">
<Entry Text="{Binding Info.BNo, Mode=TwoWay}" TextTransform="Uppercase" MaxLength="25"/>
</synCore:SfTextInputLayout>
</FlexLayout>
Please check