Skip to content

Commit ee39f06

Browse files
committed
examples: replace Editor control with Entry in the Relay Console sample
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>
1 parent 32b9b9d commit ee39f06

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

examples/xamarin/RelayConsoleSample/RelayConsoleSample/Pages/SendRelayMessagePage.xaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<Label Text="Destination interface:" />
1212
<Picker x:Name="interfacePicker" />
1313
<Label Text="Data:" />
14-
<Editor x:Name="dataEditor" Margin="0,0,0,10" />
14+
<Entry x:Name="dataEntry" Margin="0,0,0,10" />
1515
</StackLayout>
1616
<BoxView HeightRequest="1" HorizontalOptions="FillAndExpand" BackgroundColor="DarkGray"/>
1717
<StackLayout Orientation="Horizontal" HorizontalOptions="FillAndExpand">

examples/xamarin/RelayConsoleSample/RelayConsoleSample/Pages/SendRelayMessagePage.xaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ public SendRelayMessagePage(BleDevice bleDevice)
5252
public void OnSendButtonClicked(object sender, ClickedEventArgs e)
5353
{
5454
DestinationInterface = (XBeeLocalInterface) interfacePicker.SelectedItem;
55-
Data = dataEditor.Text;
55+
Data = dataEntry.Text;
5656

5757
ClosePopup();
5858
}

0 commit comments

Comments
 (0)