Add padding for the login form in web
This commit is contained in:
committed by
Dat H. Pham
parent
cd6d95d42a
commit
a16fab5562
@@ -72,7 +72,9 @@ class LoginView extends BaseLoginView {
|
|||||||
Widget _buildWebForm(BuildContext context) {
|
Widget _buildWebForm(BuildContext context) {
|
||||||
return Stack(
|
return Stack(
|
||||||
children: [
|
children: [
|
||||||
Row(
|
Padding(
|
||||||
|
padding: const EdgeInsets.only(top: 60, bottom: 60),
|
||||||
|
child: Row(
|
||||||
mainAxisAlignment: MainAxisAlignment.center,
|
mainAxisAlignment: MainAxisAlignment.center,
|
||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
children: [
|
children: [
|
||||||
@@ -186,6 +188,7 @@ class LoginView extends BaseLoginView {
|
|||||||
)
|
)
|
||||||
],
|
],
|
||||||
)
|
)
|
||||||
|
)
|
||||||
],
|
],
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user