userMatchingDriver.dart 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. import 'package:flutter/material.dart';
  2. import 'package:putra_go/screens/passenger/userHome/userCustomizedOrder.dart';
  3. import '../../driver/driverLogin.dart';
  4. class userMatchingDriver extends StatelessWidget {
  5. @override
  6. Widget build(BuildContext context) {
  7. return Scaffold(
  8. backgroundColor: Colors.white,
  9. body: Padding(
  10. padding: const EdgeInsets.all(16.0),
  11. child: Column(
  12. mainAxisAlignment: MainAxisAlignment.center,
  13. crossAxisAlignment: CrossAxisAlignment.center,
  14. children: [
  15. Text(
  16. 'Looking for driver to accept..',
  17. style: TextStyle(
  18. fontFamily: 'Poppins',
  19. fontSize: 17,
  20. fontWeight: FontWeight.bold,
  21. color: Colors.black, // Adjust color as needed
  22. ),
  23. ),
  24. Text(
  25. 'Do no worry,',
  26. style: TextStyle(
  27. fontFamily: 'Poppins',
  28. fontSize: 17,
  29. fontWeight: FontWeight.bold,
  30. color: Colors.black, // Adjust color as needed
  31. ),
  32. ),
  33. Text(
  34. 'It needs some time~',
  35. style: TextStyle(
  36. fontFamily: 'Poppins',
  37. fontSize: 17,
  38. fontWeight: FontWeight.bold,
  39. color: Colors.black, // Adjust color as needed
  40. ),
  41. ),
  42. SizedBox(height: 10),
  43. Image.asset(
  44. 'assets/images/matchingLogo.png',
  45. height: 170,
  46. width: 170,
  47. ),
  48. SizedBox(height: 40),
  49. Align(
  50. alignment: Alignment.center,
  51. child:
  52. Container(
  53. width: 334,
  54. height: 65,
  55. decoration: BoxDecoration(
  56. borderRadius: BorderRadius.circular(10),
  57. color: Color.fromRGBO(255, 120, 116, 1),
  58. ),
  59. child: TextButton(
  60. onPressed: () {
  61. Navigator.push(
  62. context,
  63. MaterialPageRoute(builder: (context) => userCustomizedOrder()),
  64. );
  65. },
  66. child: Text(
  67. 'Cancle this order',
  68. style: TextStyle(
  69. fontFamily: 'Poppins',
  70. fontSize: 17,
  71. fontWeight: FontWeight.bold,
  72. color: Colors.white,
  73. ),
  74. ),
  75. ),
  76. ),
  77. ),
  78. SizedBox(height: 10),
  79. ],
  80. ),
  81. ),
  82. );
  83. }
  84. }