The classic game of Solitaire made entirely on Flutter. APK Link : - https://drive.google.com/open?id=1WsIc4GNkvw5Dq9Jx1QpVN1xuO0cqwYXL . No link to test on iOS because I don't have a Mac yet :P.
Solitaire or Klondike implemented originally by Microsoft is a single player game. This is just a simple implementation of it in Flutter with similar but not the exact same functionalities.
- Cards are to be arranged in order from King to Ace with alternate suit pattern (i.e Red Black Red.. or Black Red Black...) and each new pile has to start with a King. Failing this can lead to losing the game.
- Bottom columns go from King to Ace while top row goes from Ace to King.
- Clicking on the deck will give out new cards that can be either put on the top row or bottom column.
- Cards once submitted to the top row cannot be brought back to the game screen.
- Reset the board if you feel like there is no winning combination
All the cards are '.png' files that are taken from itch.io as free game assets. The pixelated look of the cards gives the game a good look. Cards are named carefully so that the correct png can be assigned to the empty card container.
Link of card asset :- https://yaomon.itch.io/playing-cards
Suit pictures on the top row are taken from Google.
1. Start Screen can be made better.
2. Bugs in Spider Solitaire can be fixed.
3. Various modes including Texas , Vegas etc can be added to make the game more engaging.
silent-lad's implementation of the same at https://github.com/silent-lad/VueSolitaire