'Hi.. I am making a game where I want to show top 5 score like shown in image but if I don't have 5 records in list..it show 'empty'
like
Statstics
- David 430
- Ellen 300
- empty
- empty
- empty
Solution 1:[1]
You can create a local database using sqlflite package and store data in it.
The link of the package: https://pub.dev/packages/sqflite
It requires you know about databases and sql to be able to store data and keep the top 5 scores only in the data
but it will do the job for you.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 | Yasser Emam |