Advertisement
Guest User

Untitled

a guest
Sep 16th, 2019
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.49 KB | None | 0 0
  1. // Stack(
  2. // children: <Widget>[
  3. // TextField(
  4. // readOnly: true,
  5. // autocorrect: false,
  6. // controller: _textEditingControllerServiceCategory,
  7. // style: style,
  8. // enabled: false,
  9. // decoration: InputDecoration(
  10. // icon: Icon(
  11. // Icons.build,
  12. // color: Colors.black,
  13. // ),
  14. // hintText: 'Category',
  15. // hintStyle: TextStyle(color: Colors.black, fontSize: 11.00),
  16. // ),
  17. // ),
  18. //
  19. //
  20. // Positioned(
  21. // right: 2.0,
  22. // bottom: -4.0,
  23. // child: Row(
  24. // mainAxisAlignment: MainAxisAlignment.end,
  25. // children: <Widget>[
  26. // Radio(
  27. // onChanged: (CategoryService value) {
  28. // setState(() {
  29. // _categoryService = value;
  30. // _textEditingControllerServicePeriod.clear();
  31. // _idServicePeriod = null;
  32. // _servicePeriodName = '-';
  33. // _textEditingControllerServiceCategory.text =
  34. // "General Repair";
  35. // print(_categoryService);
  36. // });
  37. // },
  38. // groupValue: _categoryService,
  39. // value: CategoryService.regular,
  40. // activeColor: HexColor('#db2724'),
  41. // ),
  42. // FittedBox(
  43. // fit: BoxFit.fitWidth,
  44. // child: const Text(
  45. // 'General Repair',
  46. // style: TextStyle(fontSize: 11.0),
  47. // ),
  48. // ),
  49. // Radio(
  50. // activeColor: HexColor('#db2724'),
  51. // onChanged: (CategoryService value) {
  52. // setState(() {
  53. // _categoryService = value;
  54. // _textEditingControllerServicePeriod.clear();
  55. // _textEditingControllerServiceCategory.text =
  56. // "Service Berkala";
  57. // print(_categoryService);
  58. // });
  59. // },
  60. // groupValue: _categoryService,
  61. // value: CategoryService.general,
  62. // ),
  63. // FittedBox(
  64. // fit: BoxFit.fitWidth,
  65. // child: const Text(
  66. // 'Service Berkala',
  67. // style: TextStyle(fontSize: 11.0),
  68. // ),
  69. // ),
  70. // ],
  71. // ),
  72. // ),
  73. //
  74. //
  75. // ],
  76. //
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement