Skip to content

Commit

Permalink
android 0.7.7
Browse files Browse the repository at this point in the history
  • Loading branch information
Notsfsssf committed Jan 31, 2022
1 parent 6978ed1 commit 5f2e148
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 5 deletions.
4 changes: 2 additions & 2 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,8 @@ android {
applicationId packageName
minSdkVersion 21
targetSdkVersion 31
versionCode 10007065
versionName "0.7.7 X"
versionCode 10007070
versionName "0.7.7 new"
ndk { abiFilters 'armeabi-v7a', 'arm64-v8a', 'x86_64' }
}
compileOptions {
Expand Down
2 changes: 1 addition & 1 deletion lib/constants.dart
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/

class Constants {
static String tagName = "0.7.6";
static String tagName = "0.7.7";
static const isGooglePlay =
bool.fromEnvironment("IS_GOOGLEPLAY", defaultValue: false);
static int type = 0;
Expand Down
5 changes: 4 additions & 1 deletion lib/page/picture/illust_lighting_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,10 @@ class _IllustLightingPageState extends State<IllustLightingPage>
padding: const EdgeInsets.all(8.0),
child: Text(':(', style: Theme.of(context).textTheme.headline4),
),
Text('${_illustStore.errorMessage}'),
Text(
'${_illustStore.errorMessage}',
maxLines: 5,
),
ElevatedButton(
onPressed: () {
_illustStore.fetch();
Expand Down
5 changes: 4 additions & 1 deletion lib/page/user/users_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,10 @@ class _UsersPageState extends State<UsersPage>
children: <Widget>[
Padding(
padding: const EdgeInsets.all(8.0),
child: Text('Http error\n${userStore.errorMessage}'),
child: Text(
'Http error\n${userStore.errorMessage}',
maxLines: 5,
),
),
Padding(
padding: const EdgeInsets.all(8.0),
Expand Down

0 comments on commit 5f2e148

Please sign in to comment.