Commit b82e93a4 by Mobile : Ball (Apprentice)

Merge branch 'develop' of https://gitlab.2fellows.com/art/feelver into develop

parents dce038c8 1f8246e5
...@@ -234,7 +234,7 @@ class _LoginPageState extends State<LoginPage> with TickerProviderStateMixin { ...@@ -234,7 +234,7 @@ class _LoginPageState extends State<LoginPage> with TickerProviderStateMixin {
fontSize: SizeConfig.getFontSize(12), fontSize: SizeConfig.getFontSize(12),
fontFamily: "SF_Pro_Text", fontFamily: "SF_Pro_Text",
fontWeight: FontWeight.w600, fontWeight: FontWeight.w600,
decoration: TextDecoration.underline,
), ),
textAlign: TextAlign.right, textAlign: TextAlign.right,
), ),
...@@ -340,18 +340,30 @@ class _LoginPageState extends State<LoginPage> with TickerProviderStateMixin { ...@@ -340,18 +340,30 @@ class _LoginPageState extends State<LoginPage> with TickerProviderStateMixin {
SizedBox( SizedBox(
height: SizeConfig.getHeight(24), height: SizeConfig.getHeight(24),
), ),
Container( Container(
alignment: Alignment.topRight, padding: EdgeInsets.only(right: SizeConfig.getPadding(30)),
padding: EdgeInsets.only( alignment: Alignment.centerRight,
right: SizeConfig.getPadding(30), child: GestureDetector(
), onTap: () {
Navigator.push(
context,
MaterialPageRoute(builder: (context) => ForgetPassword()),
);
},
child: Text( child: Text(
'ลืมรหัสผ่าน', 'ลืมรหัสผ่าน',
style: TextStyle( style: TextStyle(
color: Color.fromRGBO(106, 179, 170, 1), color: Color.fromRGBO(106, 179, 170, 1),
fontSize: SizeConfig.getFontSize(13), fontSize: SizeConfig.getFontSize(12),
fontFamily: "SF_Pro_Text", fontFamily: "SF_Pro_Text",
fontWeight: FontWeight.w600), fontWeight: FontWeight.w600,
),
textAlign: TextAlign.right,
),
), ),
), ),
_submitLoginButton(), _submitLoginButton(),
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment