|
|
|
@ -209,14 +209,14 @@ class _LoginFormState extends State<LoginForm> {
|
|
|
|
child: Container(
|
|
|
|
child: Container(
|
|
|
|
padding: const EdgeInsets.all(10.0),
|
|
|
|
padding: const EdgeInsets.all(10.0),
|
|
|
|
height: 50,
|
|
|
|
height: 50,
|
|
|
|
width: 140,
|
|
|
|
width: constraints.maxWidth * 0.30,
|
|
|
|
child: Row(
|
|
|
|
child: Row(
|
|
|
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
|
|
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
|
|
|
children: <Widget>[
|
|
|
|
children: <Widget>[
|
|
|
|
Text('LOG IN',
|
|
|
|
Text('LOGIN',
|
|
|
|
style: TextStyle(
|
|
|
|
style: TextStyle(
|
|
|
|
fontSize: isSmallScreen
|
|
|
|
fontSize: isSmallScreen
|
|
|
|
? 20
|
|
|
|
? 15
|
|
|
|
: constraints.maxWidth * 0.020)),
|
|
|
|
: constraints.maxWidth * 0.020)),
|
|
|
|
Image.asset('assets/images/login_btn_arrow_icon.png')
|
|
|
|
Image.asset('assets/images/login_btn_arrow_icon.png')
|
|
|
|
],
|
|
|
|
],
|
|
|
|
|