Issue with ScrollView multiple Listviews in MAUI

I have created a Grid and inside it I created a ScrollView

Inside the ScrollView I created another Grid that has 5 columns, three of them has a ListView inside it

I am expecting the following behaviour: when I scroll the view, All of the 3 ListView should move at same speed and direction, please correct me if I am wrong!

when I run the program on Android , I get this wierd behaviour
here I upload it on Youtube

it looks like there is kind of Lag! the ListViews does not get 100% aligned, however they all look to move same direction as desired!

Could You please advice and point out what I am doing here wrong, thanks in advance!

My Xaml looks like this

<?xml version="1.0" encoding="utf-8" ?>
    <ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
                 xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
                 xmlns:models="clr-namespace:muf.Models"
                 x:Class="muf.Rooms.Sailor"
                 xmlns:lang="clr-namespace:muf.Resources.Languages"
                 xmlns:local="clr-namespace:muf"
                 BackgroundColor="{DynamicResource BackgroundColor}"
                 xmlns:barcode="clr-
    namespace:BarcodeScanning;assembly=BarcodeScanning.Native.Maui"
                 Unloaded="ContentPage_Unloaded">
        <AbsoluteLayout>
            <Grid x:Name="GridUpperBar" ColumnDefinitions="*, *, *" 
             AbsoluteLayout.LayoutFlags="All" AbsoluteLayout.LayoutBounds="0,0,1,0.1">
                <Border HeightRequest="80" 
                WidthRequest="100"
                StrokeShape="RoundRectangle 80,80,80,80"
                HorizontalOptions="Center"
                Grid.Column="0"
                StrokeThickness="1"
                Margin="0,0,0,0">
                </Border>
                <Border HeightRequest="80" 
                WidthRequest="100"
                StrokeShape="RoundRectangle 80,80,80,80"
                HorizontalOptions="Center"
                Grid.Column="1"
                StrokeThickness="1"
                Margin="0,0,0,0">
                </Border>
                <Border HeightRequest="80" 
                WidthRequest="100"
                StrokeShape="RoundRectangle 80,80,80,80"
                HorizontalOptions="Center"
                Grid.Column="2"
                StrokeThickness="1"
                Margin="0,0,0,0">
                </Border>
    
                <ImageButton x:Name="BtnBarcode" Grid.Column="0" WidthRequest="50" 
                HeightRequest="50" CornerRadius="25" Source="barcode.png" 
                Clicked="BtnBarcodeClicked"/>
                <ImageButton x:Name="BtnItems" Grid.Column="1" WidthRequest="50" 
                HeightRequest="50" CornerRadius="25" Source="gallery.png" 
                Clicked="BtnBarcodeClicked"/>
                <ImageButton x:Name="BtnTypeBox" Grid.Column="2" WidthRequest="50" 
                HeightRequest="50" CornerRadius="25" Source="typebox.png" 
                Clicked="BtnBarcodeClicked"/>
            </Grid>
    
            <Grid x:Name="GridBarcode" ColumnDefinitions="*" AbsoluteLayout.LayoutFlags="All" 
            AbsoluteLayout.LayoutBounds="0,0.2,1,0.25">
                <barcode:CameraView
                AbsoluteLayout.LayoutBounds="0.5,0.5,110,25"
                AbsoluteLayout.LayoutFlags="PositionProportional" 
                OnDetectionFinished="CameraView_OnDetectionFinished"
                CaptureQuality="High"
                ForceInverted="True"
                TapToFocusEnabled="True"
                BarcodeSymbologies="All"
                AimMode="True"
                x:Name="Barcode"
                IsVisible="True"
                Grid.Column="0"
                Margin="5"/>
                <GraphicsView
                  AbsoluteLayout.LayoutBounds="0.5,0.2,200,125"
                  AbsoluteLayout.LayoutFlags="PositionProportional" 
                  x:Name="Graphics"
                  InputTransparent="True"
                  IsVisible="True"
                  Grid.Column="0"/>
            </Grid>
            <Grid x:Name="GridBill0" ColumnDefinitions="*" 
            AbsoluteLayout.LayoutFlags="PositionProportional" 
            AbsoluteLayout.LayoutBounds="0.5,0.8,450,350">
            <ScrollView x:Name="ScrListInvoice" Grid.Column="0" AbsoluteLayout.LayoutFlags="All" 
            AbsoluteLayout.LayoutBounds="0,0,1,1">
            <Grid x:Name="GridBill" ColumnDefinitions="*,*,*,*,*" 
            AbsoluteLayout.LayoutFlags="PositionProportional" 
            AbsoluteLayout.LayoutBounds="0.5,0.8,450,350">
                    <ListView x:Name="ListInvoice"
                    BackgroundColor="Bisque"
                    SeparatorColor="Silver"
                    Grid.Column="1"
                    ItemSelected="ListInvoiceOnItemSelected">
                            <ListView.Header>
                                <StackLayout BackgroundColor="Red">
                                    <Label Margin="10,0,0,0"
                                Text="{x:Static lang:AppResources.ItemName}"
                                FontSize="12"
                                FontAttributes="Bold"/>
                                </StackLayout>
                            </ListView.Header>
                            <ListView.ItemTemplate>
                                <DataTemplate>
                                    <TextCell Text="{Binding Name}"
                                          TextColor="Blue">
                                        <TextCell.ContextActions>
                                            <MenuItem
                                        Text="Delete"
                                        Clicked="MenuItem_Clicked"
                                        CommandParameter="{Binding .}">
                                            </MenuItem>
                                        </TextCell.ContextActions>
                                    </TextCell>
                                </DataTemplate>
                            </ListView.ItemTemplate>
                        </ListView>
                        <ListView x:Name="ListInvoice2"
                    BackgroundColor="Bisque"
                    SeparatorColor="Silver"
                    Grid.Column="2"
                    SelectionMode="None">
                            <ListView.Header>
                                <StackLayout BackgroundColor="Red">
                                    <Label Margin="10,0,0,0"
                        Text="{x:Static lang:AppResources.Price}"
                        FontSize="12"
                        FontAttributes="Bold"/>
                                </StackLayout>
                            </ListView.Header>
                            <ListView.ItemTemplate>
                                <DataTemplate>
                                    <TextCell Text="{Binding Price}"
                                TextColor="Blue">
                                    </TextCell>
                                </DataTemplate>
                            </ListView.ItemTemplate>
                        </ListView>
                        <ListView x:Name="ListInvoice3"
                     BackgroundColor="Bisque"
                     SeparatorColor="Silver"
                     Grid.Column="3"
                     ItemSelected="ListInvoice3OnItemSelected">
                            <ListView.Header>
                                <StackLayout BackgroundColor="Red">
                                    <Label Margin="10,0,0,0"
                                 Text="{x:Static lang:AppResources.Count}"
                                 FontSize="12"
                                 FontAttributes="Bold"/>
                                </StackLayout>
                            </ListView.Header>
                            <ListView.ItemTemplate>
                                <DataTemplate>
                                    <TextCell Text="{Binding Count}"
                                TextColor="Blue">
                                    </TextCell>
                                </DataTemplate>
                            </ListView.ItemTemplate>
                        </ListView>
                    </Grid>
                </ScrollView>
            </Grid>
        </AbsoluteLayout>
    </ContentPage>

Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa Dịch vụ tổ chức sự kiện 5 sao Thông tin về chúng tôi Dịch vụ sinh nhật bé trai Dịch vụ sinh nhật bé gái Sự kiện trọn gói Các tiết mục giải trí Dịch vụ bổ trợ Tiệc cưới sang trọng Dịch vụ khai trương Tư vấn tổ chức sự kiện Hình ảnh sự kiện Cập nhật tin tức Liên hệ ngay Thuê chú hề chuyên nghiệp Tiệc tất niên cho công ty Trang trí tiệc cuối năm Tiệc tất niên độc đáo Sinh nhật bé Hải Đăng Sinh nhật đáng yêu bé Khánh Vân Sinh nhật sang trọng Bích Ngân Tiệc sinh nhật bé Thanh Trang Dịch vụ ông già Noel Xiếc thú vui nhộn Biểu diễn xiếc quay đĩa Dịch vụ tổ chức tiệc uy tín Khám phá dịch vụ của chúng tôi Tiệc sinh nhật cho bé trai Trang trí tiệc cho bé gái Gói sự kiện chuyên nghiệp Chương trình giải trí hấp dẫn Dịch vụ hỗ trợ sự kiện Trang trí tiệc cưới đẹp Khởi đầu thành công với khai trương Chuyên gia tư vấn sự kiện Xem ảnh các sự kiện đẹp Tin mới về sự kiện Kết nối với đội ngũ chuyên gia Chú hề vui nhộn cho tiệc sinh nhật Ý tưởng tiệc cuối năm Tất niên độc đáo Trang trí tiệc hiện đại Tổ chức sinh nhật cho Hải Đăng Sinh nhật độc quyền Khánh Vân Phong cách tiệc Bích Ngân Trang trí tiệc bé Thanh Trang Thuê dịch vụ ông già Noel chuyên nghiệp Xem xiếc khỉ đặc sắc Xiếc quay đĩa thú vị
Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa
Thiết kế website Thiết kế website Thiết kế website Cách kháng tài khoản quảng cáo Mua bán Fanpage Facebook Dịch vụ SEO Tổ chức sinh nhật