<syncfusion:SfListView x:Name="listView" AllowGroupExpandCollapse="True"
ItemSize="50" ItemSpacing="0,2,0,0" AutoFitMode="Height" SelectionBackgroundColor="#DDDDDD"
>
<syncfusion:SfListView.ItemTemplate>
<DataTemplate>
<StackLayout Padding="5" BackgroundColor="#FFFFFF" >
<StackLayout Orientation="Horizontal" >
<Label Text="{Binding AccountNO}" FontSize="12" FontAttributes="Bold" />
<Label Text="{Binding Shughuli}" FontSize="12" />
</StackLayout>
<StackLayout Orientation="Horizontal" HorizontalOptions="EndAndExpand" >
<Label HorizontalTextAlignment="End" Text="Balance: " FontSize="10" />
<Label HorizontalTextAlignment="End" Text="{Binding Kiasi, StringFormat=' {0:N}'}" FontAttributes="Bold" FontSize="10" />
<Label HorizontalTextAlignment="End" Text="{Binding Aina}" FontSize="10" TextColor="Red" />
</StackLayout>
<StackLayout Orientation="Horizontal" HorizontalOptions="EndAndExpand" >
<inputLayout:SfTextInputLayout Hint="Amount"
ContainerType="Outlined" ContainerBackgroundColor="#FFFFFF" HorizontalOptions="EndAndExpand" WidthRequest="200">
<numerictextbox:SfNumericTextBox x:Name="{Binding ID}" AutomationId="{Binding ID}" FontSize="12" FormatString="Tsh" EnableGroupSeparator = "true" HorizontalOptions="EndAndExpand" WidthRequest="200" HeightRequest="50"/>
</inputLayout:SfTextInputLayout>
</StackLayout>
</StackLayout>
</DataTemplate>
</syncfusion:SfListView.ItemTemplate>
</syncfusion:SfListView>