DynamicWrapLayout icon indicating copy to clipboard operation
DynamicWrapLayout copied to clipboard

My TodoItems its not populating

Open chrisgate opened this issue 6 years ago • 1 comments

Is it only public ObservableRangeCollection Items { get; set; } i can use bcoz with public ObservableRangeCollection<TodoItem> TodoItems { get; set; } is not populating. below is my view: <ScrollView> <suave:DynamicWrapLayout HorizontalOptions="Fill" ItemsSource="{Binding TodoItems}"> suave:DynamicWrapLayout.ItemTemplate <DataTemplate> <StackLayout BackgroundColor="Gray" HeightRequest="180" WidthRequest="120"> <Label HorizontalOptions="FillAndExpand" HorizontalTextAlignment="Center" Text="{Binding Name}" TextColor="White" VerticalOptions="FillAndExpand" VerticalTextAlignment="Center" /> </StackLayout> </DataTemplate> </suave:DynamicWrapLayout.ItemTemplate> </suave:DynamicWrapLayout> </ScrollView>

Am it doing any thing wrong?

chrisgate avatar Apr 14 '18 01:04 chrisgate

Your code sample is all busted. Please post a full and workable example.

SuavePirate avatar Apr 16 '18 14:04 SuavePirate