header.dart 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317
  1. import 'package:dropdown_button2/dropdown_button2.dart';
  2. import 'package:flutter/material.dart';
  3. import 'package:go_router/go_router.dart';
  4. class CustomAppbar extends StatefulWidget implements PreferredSizeWidget {
  5. final bool? isBack;
  6. final TextEditingController? controller;
  7. const CustomAppbar({super.key, this.isBack, this.controller});
  8. @override
  9. State<CustomAppbar> createState() => _CustomAppbarState();
  10. @override
  11. Size get preferredSize => Size(15, 50);
  12. }
  13. class _CustomAppbarState extends State<CustomAppbar> {
  14. @override
  15. Widget build(BuildContext context) {
  16. return AppBar(
  17. backgroundColor: Colors.white,
  18. leading: Icon(Icons.bug_report),
  19. titleSpacing: 0,
  20. title: Text(
  21. 'Bug Listing',
  22. style: TextStyle(fontSize: 28, fontWeight: FontWeight.w500),
  23. ),
  24. actions: [
  25. Padding(
  26. padding: const EdgeInsets.symmetric(horizontal: 8.0),
  27. child: DropdownButtonHideUnderline(
  28. child: DropdownButton2(
  29. customButton: const Icon(Icons.home),
  30. onChanged: (value) => context.go('/'),
  31. items: [
  32. DropdownMenuItem(
  33. child: Text('Home'),
  34. )
  35. ],
  36. dropdownStyleData: DropdownStyleData(
  37. width: 80,
  38. padding: const EdgeInsets.symmetric(vertical: 6),
  39. decoration: BoxDecoration(
  40. borderRadius: BorderRadius.circular(4),
  41. ),
  42. offset: const Offset(0, 8),
  43. ),
  44. ),
  45. ),
  46. ),
  47. Padding(
  48. padding: const EdgeInsets.symmetric(horizontal: 8.0),
  49. child: DropdownButtonHideUnderline(
  50. child: DropdownButton2(
  51. customButton: const Icon(Icons.person),
  52. items: [
  53. ...UserItems.firstItems.map(
  54. (item) => DropdownMenuItem<MenuItem>(
  55. value: item,
  56. child: UserItems.buildItem(item),
  57. ),
  58. ),
  59. ],
  60. onChanged: (value) {
  61. UserItems.onChanged(context, value!);
  62. },
  63. dropdownStyleData: DropdownStyleData(
  64. width: 100,
  65. padding: const EdgeInsets.symmetric(vertical: 6),
  66. decoration: BoxDecoration(
  67. borderRadius: BorderRadius.circular(4),
  68. ),
  69. offset: const Offset(0, 8),
  70. ),
  71. menuItemStyleData: MenuItemStyleData(
  72. customHeights: [
  73. ...List<double>.filled(UserItems.firstItems.length, 48),
  74. ],
  75. padding: const EdgeInsets.only(left: 16, right: 16),
  76. ),
  77. ),
  78. ),
  79. ),
  80. Padding(
  81. padding: const EdgeInsets.symmetric(horizontal: 8.0),
  82. child: DropdownButtonHideUnderline(
  83. child: DropdownButton2(
  84. customButton: const Icon(Icons.bug_report),
  85. items: [
  86. ...BugItems.firstItems.map(
  87. (item) => DropdownMenuItem<MenuItem>(
  88. value: item,
  89. child: BugItems.buildItem(item),
  90. ),
  91. ),
  92. ],
  93. onChanged: (value) {
  94. BugItems.onChanged(context, value!);
  95. },
  96. dropdownStyleData: DropdownStyleData(
  97. width: 100,
  98. padding: const EdgeInsets.symmetric(vertical: 6),
  99. decoration: BoxDecoration(
  100. borderRadius: BorderRadius.circular(4),
  101. ),
  102. offset: const Offset(0, 8),
  103. ),
  104. menuItemStyleData: MenuItemStyleData(
  105. customHeights: [
  106. ...List<double>.filled(BugItems.firstItems.length, 48),
  107. ],
  108. padding: const EdgeInsets.only(left: 16, right: 16),
  109. ),
  110. ),
  111. ),
  112. ),
  113. Padding(
  114. padding: const EdgeInsets.symmetric(horizontal: 8.0),
  115. child: DropdownButtonHideUnderline(
  116. child: DropdownButton2(
  117. customButton: const Icon(Icons.dynamic_form),
  118. items: [
  119. ...PlatformItems.firstItems.map(
  120. (item) => DropdownMenuItem<MenuItem>(
  121. value: item,
  122. child: PlatformItems.buildItem(item),
  123. ),
  124. ),
  125. ],
  126. onChanged: (value) {
  127. PlatformItems.onChanged(context, value!);
  128. },
  129. dropdownStyleData: DropdownStyleData(
  130. width: 150,
  131. padding: const EdgeInsets.symmetric(vertical: 6),
  132. decoration: BoxDecoration(
  133. borderRadius: BorderRadius.circular(4),
  134. ),
  135. offset: const Offset(0, 8),
  136. ),
  137. menuItemStyleData: MenuItemStyleData(
  138. customHeights: [
  139. ...List<double>.filled(PlatformItems.firstItems.length, 48),
  140. ],
  141. padding: const EdgeInsets.only(left: 16, right: 16),
  142. ),
  143. ),
  144. ),
  145. ),
  146. Padding(
  147. padding: const EdgeInsets.symmetric(horizontal: 8),
  148. child: DropdownButtonHideUnderline(
  149. child: DropdownButton2(
  150. customButton: const Icon(Icons.pan_tool),
  151. items: [
  152. DropdownMenuItem(
  153. child: Text('Maintenance'),
  154. )
  155. ],
  156. onChanged: (value) => context.go('/maintenance'),
  157. dropdownStyleData: DropdownStyleData(
  158. width: 130,
  159. padding: const EdgeInsets.symmetric(vertical: 6),
  160. decoration: BoxDecoration(
  161. borderRadius: BorderRadius.circular(4),
  162. ),
  163. offset: const Offset(0, 8),
  164. ),
  165. ),
  166. ),
  167. ),
  168. Padding(
  169. padding: const EdgeInsets.symmetric(horizontal: 6),
  170. child: DropdownButtonHideUnderline(
  171. child: DropdownButton2(
  172. customButton: const Icon(Icons.logout),
  173. items: [
  174. DropdownMenuItem(
  175. child: Text('Log Out'),
  176. )
  177. ],
  178. onChanged: null,
  179. dropdownStyleData: DropdownStyleData(
  180. width: 130,
  181. padding: const EdgeInsets.symmetric(vertical: 6),
  182. decoration: BoxDecoration(
  183. borderRadius: BorderRadius.circular(4),
  184. ),
  185. offset: const Offset(0, 8),
  186. ),
  187. ),
  188. ),
  189. ),
  190. ],
  191. );
  192. }
  193. }
  194. class MenuItem {
  195. const MenuItem({
  196. required this.text,
  197. });
  198. final String text;
  199. }
  200. mixin PlatformItems {
  201. static const List<MenuItem> firstItems = [add, edit, list];
  202. static const add = MenuItem(text: 'Add Platform');
  203. static const edit = MenuItem(text: 'Edit Platform');
  204. static const list = MenuItem(text: 'List Platform');
  205. static Widget buildItem(MenuItem item) {
  206. return Row(
  207. children: [
  208. Expanded(
  209. child: Text(
  210. item.text,
  211. style: const TextStyle(
  212. color: Colors.black,
  213. ),
  214. ),
  215. ),
  216. ],
  217. );
  218. }
  219. static void onChanged(BuildContext context, MenuItem item) {
  220. switch (item) {
  221. case PlatformItems.add:
  222. context.go('/addplatform');
  223. break;
  224. case PlatformItems.edit:
  225. context.go('/listplatform/editplatform');
  226. break;
  227. case PlatformItems.list:
  228. context.go('/listplatform');
  229. break;
  230. }
  231. }
  232. }
  233. mixin BugItems {
  234. static const List<MenuItem> firstItems = [add, edit, list];
  235. static const add = MenuItem(text: 'Add Bug');
  236. static const edit = MenuItem(text: 'Edit Bug');
  237. static const list = MenuItem(text: 'List Bug');
  238. static Widget buildItem(MenuItem item) {
  239. return Row(
  240. children: [
  241. Expanded(
  242. child: Text(
  243. item.text,
  244. style: const TextStyle(
  245. color: Colors.black,
  246. ),
  247. ),
  248. ),
  249. ],
  250. );
  251. }
  252. static void onChanged(BuildContext context, MenuItem item) {
  253. switch (item) {
  254. case BugItems.add:
  255. context.go('/addbug');
  256. break;
  257. case BugItems.edit:
  258. context.go('/login/bug/editbug');
  259. break;
  260. case BugItems.list:
  261. context.go('/login/bug');
  262. break;
  263. }
  264. }
  265. }
  266. mixin UserItems {
  267. static const List<MenuItem> firstItems = [/*edit, change,*/ list];
  268. static const edit = MenuItem(text: 'Edit User');
  269. static const change = MenuItem(text: 'Edit Password');
  270. static const list = MenuItem(text: 'List User');
  271. static Widget buildItem(MenuItem item) {
  272. return Row(
  273. children: [
  274. Expanded(
  275. child: Text(
  276. item.text,
  277. style: const TextStyle(
  278. color: Colors.black,
  279. ),
  280. ),
  281. ),
  282. ],
  283. );
  284. }
  285. static void onChanged(BuildContext context, MenuItem item) {
  286. switch (item) {
  287. // case UserItems.edit:
  288. // context.go('/signup/listuser/edit');
  289. // break;
  290. // case UserItems.change:
  291. // context.go('/login/bug/editbug');
  292. // break;
  293. case UserItems.list:
  294. context.go('/signup/listuser');
  295. break;
  296. }
  297. }
  298. }