Skip to content

Commit

Permalink
examples: replace Editor control with Entry in the Relay Console sample
Browse files Browse the repository at this point in the history
There seems to be a bug in the Xamarin Forms Editor control when running
in iOS 13.

Signed-off-by: Ruben Moral <ruben.moral@digi.com>
  • Loading branch information
rubenmoral committed Sep 18, 2020
1 parent 32b9b9d commit ee39f06
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<Label Text="Destination interface:" />
<Picker x:Name="interfacePicker" />
<Label Text="Data:" />
<Editor x:Name="dataEditor" Margin="0,0,0,10" />
<Entry x:Name="dataEntry" Margin="0,0,0,10" />
</StackLayout>
<BoxView HeightRequest="1" HorizontalOptions="FillAndExpand" BackgroundColor="DarkGray"/>
<StackLayout Orientation="Horizontal" HorizontalOptions="FillAndExpand">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public SendRelayMessagePage(BleDevice bleDevice)
public void OnSendButtonClicked(object sender, ClickedEventArgs e)
{
DestinationInterface = (XBeeLocalInterface) interfacePicker.SelectedItem;
Data = dataEditor.Text;
Data = dataEntry.Text;

ClosePopup();
}
Expand Down

0 comments on commit ee39f06

Please sign in to comment.