userMain.dart 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. import 'package:flutter/material.dart';
  2. import '../driver/driverMain.dart';
  3. import 'authenticate/userLogin.dart';
  4. import 'authenticate/userRegister.dart';
  5. class userMain extends StatelessWidget {
  6. const userMain({Key? key}) : super(key: key);
  7. @override
  8. Widget build(BuildContext context) {
  9. return Scaffold(
  10. backgroundColor: Colors.white,
  11. body:
  12. SingleChildScrollView(
  13. child: Column(
  14. children: <Widget>[
  15. Padding(
  16. padding: const EdgeInsets.all(16.0),
  17. child: Column(
  18. mainAxisAlignment: MainAxisAlignment.center,
  19. crossAxisAlignment: CrossAxisAlignment.center,
  20. children: [
  21. const SizedBox(height: 20),
  22. const Align(
  23. alignment: Alignment.centerLeft,
  24. child: Text(
  25. 'Share the ride',
  26. style: TextStyle(
  27. fontFamily: 'Poppins',
  28. fontSize: 27,
  29. fontWeight: FontWeight.bold,
  30. color: Colors.black,
  31. ),
  32. ),
  33. ),
  34. const SizedBox(height: 0),
  35. const Align(
  36. alignment: Alignment.centerLeft,
  37. child: Text(
  38. 'Split the fare',
  39. style: TextStyle(
  40. fontFamily: 'Poppins',
  41. fontSize: 27,
  42. color: Colors.black,
  43. ),
  44. ),
  45. ),
  46. const SizedBox(height: 70),
  47. Image.asset(
  48. 'assets/images/putrago.png',
  49. height: 70,
  50. ),
  51. const SizedBox(height: 70),
  52. Container(
  53. width: 334,
  54. height: 65,
  55. decoration: BoxDecoration(
  56. borderRadius: BorderRadius.circular(10),
  57. color: const Color.fromRGBO(119, 97, 255, 1.0),
  58. ),
  59. child: TextButton(
  60. onPressed: () {
  61. // Handle login button press
  62. Navigator.push(
  63. context,
  64. MaterialPageRoute(builder: (context) => userLogin()),
  65. );
  66. },
  67. child: const Text(
  68. 'Login',
  69. style: TextStyle(
  70. fontFamily: 'Poppins',
  71. fontSize: 17,
  72. fontWeight: FontWeight.bold,
  73. color: Colors.white,
  74. ),
  75. ),
  76. ),
  77. ),
  78. //Go to user register page
  79. const SizedBox(height: 10),
  80. Container(
  81. width: 334,
  82. height: 65,
  83. decoration: BoxDecoration(
  84. borderRadius: BorderRadius.circular(10),
  85. color: Colors.white,
  86. border: Border.all(color: Colors.black, width: 2),
  87. ),
  88. child: TextButton(
  89. onPressed: () {
  90. // Handle register button press
  91. Navigator.push(
  92. context,
  93. MaterialPageRoute(builder: (context) => userRegister()),
  94. );
  95. },
  96. child: const Text(
  97. 'Register',
  98. style: TextStyle(
  99. fontFamily: 'Poppins',
  100. fontSize: 17,
  101. fontWeight: FontWeight.bold,
  102. color: Colors.black,
  103. ),
  104. ),
  105. ),
  106. ),
  107. const SizedBox(height: 20),
  108. const Text(
  109. 'or',
  110. style: TextStyle(
  111. fontFamily: 'Poppins',
  112. fontSize: 17,
  113. fontWeight: FontWeight.bold,
  114. color: Color.fromRGBO(165, 165, 165, 1),
  115. ),
  116. ),
  117. const SizedBox(height: 20),
  118. TextButton(
  119. onPressed: () {
  120. // Handle login as a user button press
  121. Navigator.push( context,
  122. MaterialPageRoute(builder: (context) => driverMain()),
  123. );
  124. },
  125. child: const Text(
  126. 'Login as a Driver',
  127. style: TextStyle(
  128. fontFamily: 'Poppins',
  129. fontSize: 17,
  130. fontWeight: FontWeight.w500,
  131. decoration: TextDecoration.underline,
  132. color: Color.fromRGBO(119, 97, 255, 1.0),
  133. ),
  134. ),
  135. ),
  136. ],
  137. ),
  138. ),
  139. ],
  140. ),
  141. )
  142. );
  143. }
  144. }