How to make the cursor not go beyond the visible area? I wrote numbers from 1 to 8, but 7 and 8 are not displayed (the field is in focus and should be visible).
MainPage = new ContentPage
{
Content = new CircleStackLayout
{
VerticalOptions = LayoutOptions.FillAndExpand,
HorizontalOptions = LayoutOptions.FillAndExpand,
Children = {
new Entry
{
HorizontalOptions = LayoutOptions.FillAndExpand,
HorizontalTextAlignment = TextAlignment.Center,
Placeholder = "Test Placeholder",
},
}
}
};
The same behavior is obtained when using Margin in Entry in StackLayout (numbers from 1-9):
MainPage = new ContentPage
{
Content = new StackLayout
{
VerticalOptions = LayoutOptions.FillAndExpand,
HorizontalOptions = LayoutOptions.FillAndExpand,
Children = {
new Entry
{
Margin = new Thickness(100, 0),
HorizontalOptions = LayoutOptions.FillAndExpand,
HorizontalTextAlignment = TextAlignment.Center,
Placeholder = "Test Placeholder",
},
}
}
};
The text is hidden behind the visible area of Entry
Tizen.Wearable.CircularUI = 1.4.0
Xamarin.Form = 4.3.0.908675
How to make the cursor not go beyond the visible area? I wrote numbers from 1 to 8, but 7 and 8 are not displayed (the field is in focus and should be visible).
The same behavior is obtained when using Margin in Entry in StackLayout (numbers from 1-9):
BY
16 Apr 2025
Tizen Studio
BY
04 Nov 2024
Tizen Studio
BY
02 Apr 2024
Tizen Studio