I am trying to implement a word search game for my project. I have created the word search letterbox using the grid and label (using this blog). Each letterbox has some words and that words are listed under the letterbox. I need to select the word hidden in the letterbox by dragging the labels. When start dragging the background color changed to orange. If the dragged word is in the words list, change the background color to green. Also, I need to capture the total, right and wrong attempts.
Please watch this video for getting a clear idea. I have also added a sample project here for the reference. I need to do the below things:
Dragging event for labels inside the grid.
Change the background color to orange(when starts dragging) and green(when the word is in the list).
A tickmark for found words.
Capture the total attempts, wrong attempts, and correct attempts.
Implemented the word search game with the clicked feature of the button. When using the clicked feature we need to check the pattern is correct or not. I have uploaded a sample project here.
The sample contains the following features:
References:
https://github.com/neetfreek/word-search-generator/blob/master/WordSearch/WordSearch.cs
Xamarin Forms: How to add background color for clicked button inside grid(Word Search Game)
Xamarin Forms: Grid button UI breaks when click restart button