From aaa8164d3f76a47ae1bed518de421b8f60026caf Mon Sep 17 00:00:00 2001 From: w8385 Date: Sat, 25 Mar 2023 15:48:24 +0900 Subject: [PATCH] v1.1.5+50 fix: top100 shows 80 -> 100 --- my_solved/lib/widgets/user_widget.dart | 2 +- my_solved/pubspec.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/my_solved/lib/widgets/user_widget.dart b/my_solved/lib/widgets/user_widget.dart index 94e1434c..5270f733 100644 --- a/my_solved/lib/widgets/user_widget.dart +++ b/my_solved/lib/widgets/user_widget.dart @@ -608,7 +608,7 @@ Widget top100( future: future, builder: (context, snapshot) { if (snapshot.hasData) { - int count = min(80, snapshot.data?.count ?? 0); + int count = min(100, snapshot.data?.count ?? 0); return Column( children: [ Container( diff --git a/my_solved/pubspec.yaml b/my_solved/pubspec.yaml index 95ea6a9f..7521c7d6 100644 --- a/my_solved/pubspec.yaml +++ b/my_solved/pubspec.yaml @@ -3,7 +3,7 @@ description: For solving problems in the world of programming; base on solved.ac publish_to: 'none' # Remove this line if you wish to publish to pub.dev -version: 1.1.5+49 +version: 1.1.5+50 environment: sdk: '>=2.18.2 <3.0.0'