update login text

This commit is contained in:
Mohamed Nouffer
2023-03-01 16:49:43 +05:30
parent 27768e4cfd
commit 4994660dda
2 changed files with 21 additions and 6 deletions

View File

@ -37,7 +37,7 @@ class LoginPage extends StatelessWidget {
Column(
children: [
Container(
height: MediaQuery.of(context).size.height/5,
height: MediaQuery.of(context).size.height/6,
decoration: BoxDecoration(
image:DecorationImage(image: AssetImage('assets/images/login_image.jpg'))
),
@ -107,7 +107,7 @@ class LoginPage extends StatelessWidget {
),
),
),
SizedBox(height: 19.0,),
SizedBox(height: 5.0,),
MaterialButton(
minWidth: double.infinity,
height:40,
@ -123,7 +123,7 @@ class LoginPage extends StatelessWidget {
),
),
),
SizedBox(height: 19.0,),
SizedBox(height: 2.0,),
MaterialButton(
minWidth: double.infinity,
height:40,
@ -145,7 +145,7 @@ class LoginPage extends StatelessWidget {
),
)
),
SizedBox(height: 20,),
SizedBox(height: 5,),
Row(
mainAxisAlignment: MainAxisAlignment.center,
children: [
@ -158,6 +158,19 @@ class LoginPage extends StatelessWidget {
),
),
],
),
Row(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Flexible(
child: Padding(
padding: const EdgeInsets.all(8.0),
child: Text("app_developed_by_gifu_dx".tr, style: TextStyle(
overflow: TextOverflow.ellipsis, fontSize: 10.0
),),
),
),
],
)
],