Add dex ID numbers below the entries

This commit is contained in:
zontreck 2025-03-22 19:22:55 -07:00
parent 7b8827284a
commit bac453607d
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,3 @@
class Constants { class Constants {
static const VERSION = "1.0.032225+1921"; static const VERSION = "1.0.032225+1922";
} }

View file

@ -101,6 +101,10 @@ class _HomeState extends State<Home> {
Pokemon.values[index].name, Pokemon.values[index].name,
style: TextStyle(fontSize: 32, color: Colors.black), style: TextStyle(fontSize: 32, color: Colors.black),
), ),
Text(
"#${Pokemon.values[index].id}",
style: TextStyle(fontSize: 24, color: Colors.black),
),
], ],
), ),
), ),