login.dart 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. // ignore_for_file: use_build_context_synchronously
  2. import 'package:flutter/material.dart';
  3. import 'package:namer_app/footer.dart';
  4. import 'package:namer_app/header.dart';
  5. import 'package:namer_app/service/login_serv.dart';
  6. class LoginPage extends StatelessWidget {
  7. const LoginPage({super.key});
  8. @override
  9. Widget build(BuildContext context) {
  10. final usernameController = TextEditingController();
  11. final passwordController = TextEditingController();
  12. return Scaffold(
  13. appBar: CustomAppbar(),
  14. backgroundColor: Colors.white,
  15. body: Column(
  16. mainAxisAlignment: MainAxisAlignment.spaceEvenly,
  17. children: [
  18. Expanded(
  19. child: Center(
  20. child: Row(
  21. mainAxisAlignment: MainAxisAlignment.center,
  22. children: [
  23. Text(
  24. 'LOGIN',
  25. style: TextStyle(color: Colors.black, fontSize: 48),
  26. ),
  27. ],
  28. )),
  29. ),
  30. Expanded(
  31. child: Column(
  32. children: [
  33. Padding(
  34. padding: const EdgeInsets.all(8.0),
  35. child: SizedBox(
  36. width: 396,
  37. height: 51,
  38. child: TextField(
  39. decoration: InputDecoration(
  40. border: OutlineInputBorder(),
  41. focusedBorder: OutlineInputBorder(
  42. borderRadius: BorderRadius.all(Radius.circular(12)),
  43. borderSide: BorderSide(color: Colors.black)),
  44. enabledBorder: OutlineInputBorder(
  45. borderRadius: BorderRadius.all(Radius.circular(12)),
  46. borderSide: BorderSide(color: Colors.black)),
  47. labelText: 'Enter Username',
  48. labelStyle: TextStyle(color: Colors.black),
  49. filled: true,
  50. fillColor: Colors.white.withOpacity(0.25)),
  51. cursorColor: Colors.black,
  52. style: TextStyle(color: Colors.black),
  53. controller: usernameController,
  54. ),
  55. ),
  56. ),
  57. SizedBox(
  58. width: 396,
  59. height: 51,
  60. child: TextField(
  61. obscureText: true,
  62. decoration: InputDecoration(
  63. border: OutlineInputBorder(),
  64. focusedBorder: OutlineInputBorder(
  65. borderRadius: BorderRadius.all(Radius.circular(12)),
  66. borderSide: BorderSide(color: Colors.black)),
  67. enabledBorder: OutlineInputBorder(
  68. borderRadius: BorderRadius.all(Radius.circular(12)),
  69. borderSide: BorderSide(color: Colors.black)),
  70. labelText: 'Enter Password',
  71. labelStyle: TextStyle(color: Colors.black),
  72. filled: true,
  73. fillColor: Colors.white.withOpacity(0.25)),
  74. cursorColor: Colors.black,
  75. style: TextStyle(color: Colors.black),
  76. controller: passwordController,
  77. ),
  78. ),
  79. Padding(
  80. padding: const EdgeInsets.all(20.0),
  81. child: SizedBox(
  82. width: 396,
  83. height: 61,
  84. child: ElevatedButton(
  85. onPressed: () => submit(context, usernameController.text, passwordController.text),
  86. style: ElevatedButton.styleFrom(
  87. backgroundColor: Colors.black,
  88. side: BorderSide(color: Colors.white),
  89. shape: RoundedRectangleBorder(
  90. borderRadius: BorderRadius.circular(12.0),
  91. ),
  92. ),
  93. child: Text(
  94. 'Login',
  95. style: TextStyle(color: Colors.white),
  96. ),
  97. ),
  98. ),
  99. ),
  100. ],
  101. )),
  102. ],
  103. ),
  104. bottomNavigationBar: Footer(),
  105. );
  106. }
  107. }