Skip to content

Commit

Permalink
fixed adv stats for heroes and bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
namelessto committed May 9, 2024
1 parent 864eda3 commit 6ff7e44
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions lib/presentation/widgets/heroes/hero_stats.dart
Original file line number Diff line number Diff line change
Expand Up @@ -96,9 +96,9 @@ class StatsList extends StatelessWidget {
shrinkWrap: true,
physics: const NeverScrollableScrollPhysics(),
primary: false,
itemCount: dynamicItemValue['value'].length,
itemCount: dynamicItemValue['values'].length,
itemBuilder: (BuildContext context, int index) {
final listData = dynamicItemValue['value'];
final listData = dynamicItemValue['values'];
final dynamicItemValueValue = listData[index];
return ListTile(
title: Text(
Expand Down
2 changes: 1 addition & 1 deletion lib/utilities/constants.dart
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const String kBosses = 'bosses';
const String kMinions = 'minions';
const String kMaps = 'maps';

const int gameVersion = 41;
const int gameVersion = 42;

const int kTowersIndex = 0;
const int kHeroesIndex = 1;
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ publish_to: "none" # Remove this line if you wish to publish to pub.dev
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
# In Windows, build-name is used as the major, minor, and patch parts
# of the product and file versions while build-number is used as the build suffix.
version: 1.2.0-41+22
version: 1.2.1-42+23

environment:
sdk: ">=2.18.5 <4.0.0"
Expand Down

0 comments on commit 6ff7e44

Please sign in to comment.