userMain.dart 5.1 KB

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