From bac453607d2cfebe48b4f1f8abdd97c13b86fa0b Mon Sep 17 00:00:00 2001 From: zontreck Date: Sat, 22 Mar 2025 19:22:55 -0700 Subject: [PATCH] Add dex ID numbers below the entries --- lib/Consts.dart | 2 +- lib/MainApp.dart | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/lib/Consts.dart b/lib/Consts.dart index fa9bb4d..c521791 100644 --- a/lib/Consts.dart +++ b/lib/Consts.dart @@ -1,3 +1,3 @@ class Constants { - static const VERSION = "1.0.032225+1921"; + static const VERSION = "1.0.032225+1922"; } diff --git a/lib/MainApp.dart b/lib/MainApp.dart index 7e48e7f..5b3c6fc 100644 --- a/lib/MainApp.dart +++ b/lib/MainApp.dart @@ -101,6 +101,10 @@ class _HomeState extends State { Pokemon.values[index].name, style: TextStyle(fontSize: 32, color: Colors.black), ), + Text( + "#${Pokemon.values[index].id}", + style: TextStyle(fontSize: 24, color: Colors.black), + ), ], ), ),