Skip to content

Commit 6df5261

Browse files
authored
Merge pull request #41 from Restfulness/ui
Fix UI issues
2 parents fa1a2cc + cee8c5c commit 6df5261

File tree

9 files changed

+7
-10
lines changed

9 files changed

+7
-10
lines changed

assets/icons/restApi.png

1.62 KB
Loading

lib/src/screens/home_screen.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -187,8 +187,8 @@ class HomeScreenState extends State<HomeScreen> {
187187
child: CircularProgressIndicator(
188188
valueColor: AlwaysStoppedAnimation<Color>(Colors.white),
189189
),
190-
height: 25.0,
191-
width: 25.0,
190+
height: 20.0,
191+
width: 20.0,
192192
);
193193
} else {
194194
return Icon(

lib/src/screens/login/login_screen.dart

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ class _LoginScreenState extends State<LoginScreen> {
2626
),
2727
child: Scaffold(
2828
resizeToAvoidBottomInset: false,
29-
resizeToAvoidBottomPadding: false,
3029
body: Builder(
3130
builder: (BuildContext context) {
3231
return buildBody(bloc, context);

lib/src/screens/register/register_screen.dart

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ class _RegisterScreenState extends State<RegisterScreen> {
2525
final bloc = AuthProvider.of(context);
2626
return Scaffold(
2727
resizeToAvoidBottomInset: false,
28-
resizeToAvoidBottomPadding: false,
2928
body: buildBody(bloc, context),
3029
);
3130
}

lib/src/screens/reset_password/forgot_password_screen.dart

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ class ForgotPasswordScreen extends StatelessWidget {
2121
final bloc = AuthProvider.of(context);
2222
return Scaffold(
2323
resizeToAvoidBottomInset: false,
24-
resizeToAvoidBottomPadding: false,
2524
body: buildBody(bloc, context),
2625
);
2726
}

lib/src/widgets/link_preview_widget.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ class LinkPreviewWidget extends StatelessWidget {
9595
padding: EdgeInsets.fromLTRB(12.0, 0.0, 12.0, 0.0),
9696
child: Text(
9797
info.description,
98-
maxLines: 3,
98+
maxLines: 2,
9999
),
100100
),
101101
),

lib/src/widgets/search_widget.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,8 +124,8 @@ class SearchWidgetState extends State<SearchWidget> {
124124
child: CircularProgressIndicator(
125125
valueColor: AlwaysStoppedAnimation<Color>(Colors.white),
126126
),
127-
height: 25.0,
128-
width: 25.0,
127+
height: 20.0,
128+
width: 20.0,
129129
);
130130
} else {
131131
return Icon(

pubspec.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -718,4 +718,4 @@ packages:
718718
version: "2.2.1"
719719
sdks:
720720
dart: ">=2.12.0-0.0 <3.0.0"
721-
flutter: ">=1.22.2 <2.0.0"
721+
flutter: ">=1.22.2"

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev
1515
# In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion.
1616
# Read more about iOS versioning at
1717
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
18-
version: 1.1.6+6
18+
version: 1.1.7+7
1919

2020
environment:
2121
sdk: ">=2.7.0 <3.0.0"

0 commit comments

Comments
 (0)