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'