FlowListView - questions
See original GitHub issue- Can I specify a DataTemplate for the cell?
I see it only works with the FlowColumnTemplateSelector but this one returns Type which later used to create the instance like this:
var view = (View)Activator.CreateInstance(columnTypes[i]);
- If I change the width and height of a cell, does it refresh correctly?
Issue Analytics
- State:
- Created 7 years ago
- Comments:25 (12 by maintainers)
Top Results From Across the Web
FlowListView not working correctly with a simple example
It works ok with a basic Xamarin ListView but when switched over to FLowListView it only shows the correct number of rows but...
Read more >Remove title FlowListView sample - Microsoft Q&A
i tried the FlowListView to this screen, everything works the way I want it, except the text "DLToolkit.From.Controls.FlowGroup".
Read more >How to pull metadata related to Flow Listview?
I have a Flow Listview that I'd like to add to my repository. Does anybody know what is the name of the ......
Read more >DLToolkit.Forms.Controls.FlowListView 2.0.11
Find out the service status of NuGet.org and its related services. FAQ. Read the Frequently Asked Questions about NuGet and see if your...
Read more >NuGet Package FlowListView Plugin for Xamarin.Forms
Ask any FlowListView Plugin for Xamarin.Forms Questions and Get Instant Answers from ChatGPT AI: ChatGPT answer me!
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
DataTemplateSelector
derives fromDataTemplate
. So I think you can just have one property calledDataTemplate FlowItemTemplate
. Xamarin Forms ListView does it like this for theItemTemplate
property: https://blog.xamarin.com/customizing-list-view-cells-xamarin-forms-datatemplateselector/Optionally, if you want to offer the ability to select based on item’s index, you could have a FlowItemTemplateSelector which looks like this:
I am not sure about having both
FlowColumnCount
andFlowAutoColumnCount
. Maybe have justint? FlowColumnCount
which by default is null, meaning control auto computes the number of columns based on FlowLisView’s width and flow item’s width. I would changeFlowColumnDefaultMinimumWidth
to justint? FlowColumnWidth
. If it’s null and you need item width, use the item’sMinimumWidth
.It also supports
DataTemplateSelector
. Testers are welcome.