Advertisement
Guest User

Untitled

a guest
Aug 23rd, 2019
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.62 KB | None | 0 0
  1. Padding(
  2. padding: const EdgeInsets.only(left: 8, right: 10),
  3. child: Row(
  4. mainAxisAlignment: MainAxisAlignment.start,
  5. children: <Widget>[
  6. boxStep('Body', processPassedColor),
  7. boxStep('Battery Test', processPassedColor),
  8. boxStepUnSpacer("Brake", processPassedColor)
  9. ],
  10. ),
  11. ),
  12.  
  13. Row(
  14. mainAxisAlignment: MainAxisAlignment.start,
  15. children: <Widget>[
  16. SizedBox(width: 290,),
  17. Column(
  18. children: <Widget>[
  19. lineComponent(processPassedColor),
  20. lineComponent(processPassedColor)
  21. ],
  22. )
  23. ],
  24. ),
  25.  
  26. Padding(
  27. padding: const EdgeInsets.only(left: 8, right: 10),
  28. child: Row(
  29. mainAxisAlignment: MainAxisAlignment.start,
  30. children: <Widget>[
  31. boxStep('Filter Oil', unActiveProcessColor),
  32. boxStep('Steering Wheel', unActiveProcessColor),
  33. boxStepUnSpacer('Machine', processPassedColor)
  34. ],
  35. ),
  36. ),
  37.  
  38. Row(
  39. mainAxisAlignment: MainAxisAlignment.start,
  40. children: <Widget>[
  41. SizedBox(width: 50,),
  42. Column(
  43. children: <Widget>[
  44. lineComponent(unActiveProcessColor),
  45. lineComponent(unActiveProcessColor)
  46. ],
  47. )
  48. ],
  49. ),
  50.  
  51. Padding(
  52. padding: const EdgeInsets.only(left: 8, right: 10),
  53. child: Row(
  54. mainAxisAlignment: MainAxisAlignment.start,
  55. children: <Widget>[
  56. boxStep('Wheels', unActiveProcessColor),
  57. boxStep('Charging Test', unActiveProcessColor),
  58. boxStepUnSpacer('Starter Test', unActiveProcessColor)
  59. ],
  60. ),
  61. ),
  62.  
  63. Row(
  64. mainAxisAlignment: MainAxisAlignment.start,
  65. children: <Widget>[
  66. SizedBox(width: 290,),
  67. Column(
  68. children: <Widget>[
  69. lineComponent(unActiveProcessColor),
  70. lineComponent(unActiveProcessColor)
  71. ],
  72. )
  73. ],
  74. ),
  75.  
  76. Padding(
  77. padding: const EdgeInsets.only(left: 8, right: 10),
  78. child: Row(
  79. mainAxisAlignment: MainAxisAlignment.start,
  80. children: <Widget>[
  81. boxStep('Electrical System', unActiveProcessColor),
  82. boxStep('Radiator Coolant', unActiveProcessColor),
  83. boxStepUnSpacer('Machine Oil', unActiveProcessColor)
  84. ],
  85. ),
  86. ),
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement