Hi all,
I'm using TableView to display some information of user on screen.
var tvAdditionalInfos = new TableView
{
HorizontalOptions = LayoutOptions.FillAndExpand,
VerticalOptions = LayoutOptions.FillAndExpand,
Intent = TableIntent.Data,
HasUnevenRows = true,
//RowHeight = 60,
Root = new TableRoot
{
new TableSection("")
{
new ViewCell
{
View = new StackLayout
{
....
Does anyone knows why there is a horizontal scrollbar inside the TableView?
Thank you very much,