Suggestion - not issue
See original GitHub issueOn the CarouselView It would be nice if ItemTemplate was not required. In my case I have my app’s checkout steps are in a carousel, and each page is a different ContentView. I had to create an ItemTemplate for the carousel for it not to throw an exception. If your control had a default ItemTemplate of something like:
new DataTemplate(() =>
{
var view = new ContentView();
view.SetBinding(ContentView.ContentProperty, nameof(ContentView.Content));
return view;
})
Then it would just work by letting you set a list of views to the carousel, without having to define the template. It took some time to figure out that the missing ItemTemplate was my issue, because the last carousel I used didn’t require me to define it, I believe it was doing something similar to this.
Issue Analytics
- State:
- Created 5 years ago
- Comments:7 (4 by maintainers)
Top Results From Across the Web
Why does intellisense and code suggestion stop working ...
I am having the same issue; Intellisense randomly will stop showing in some files, but not others. I just had it happen to...
Read more >Suggestions box's first choice is sometimes selected ...
Type: Bug Since last update, auto-completion is completely broken. As I type a few characters, the suggestions box appears, but more ofter ...
Read more >Suggestion Completion Not Function…
I am having issues with the suggestion completion feature in the playground of Xcode. It appears that some of the control flow statements...
Read more >Outlook Location Suggestion Not Working
I found out that if the 'Optional Connected Experiences' setting is unchecked in the 'Account -> Account Privacy -> Settings' it disables ...
Read more >how to fix android studio not suggesting code issue ... - YouTube
how to fix android studio not suggesting code issue xml & codes/auto suggestion not working in android studio. Tag... how to fix android ......
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
Oh okay. I’ll give that a go. I’ve made one other change too that I think is important. Give me a moment, and I’ll try to get the pr to work.
Done! 😃