list.dart 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199
  1. import 'package:flutter/material.dart';
  2. class ListPage extends StatelessWidget {
  3. const ListPage({Key? key}) : super(key: key);
  4. @override
  5. Widget build(BuildContext context) {
  6. final List<Data> items = [
  7. Data(
  8. type: 'Foods & Drinks',
  9. color: Color(0xffCCA600),
  10. image: 'assets/images/food.png'),
  11. Data(
  12. type: 'Services',
  13. color: Color(0xff90D8F9),
  14. image: 'assets/images/service.png'),
  15. Data(
  16. type: 'Additional',
  17. color: Color(0xffAACEE0),
  18. image: 'assets/images/additional.png'),
  19. Data(
  20. type: 'First Aid',
  21. color: Color(0xffFF1111),
  22. image: 'assets/images/firstaid.png'),
  23. Data(
  24. type: 'Ticket',
  25. color: Color(0xff5ED8F6),
  26. image: 'assets/images/ticket.png'),
  27. Data(
  28. type: 'Vacation',
  29. color: Color(0xffCCA600),
  30. image: 'assets/images/vacation.png'),
  31. Data(
  32. type: 'Transportation',
  33. color: Color(0xff6C8BA5),
  34. image: 'assets/images/transportation.png'),
  35. ];
  36. return Scaffold(
  37. appBar: AppBar(
  38. backgroundColor: Color(0xff078C84),
  39. automaticallyImplyLeading: false,
  40. toolbarHeight: 44,
  41. ),
  42. body: SingleChildScrollView(
  43. child: Column(
  44. children: [
  45. TopMenu(),
  46. Column(
  47. children: List.generate(
  48. items.length,
  49. (i) => SizedBox(
  50. child: ListTile(
  51. leading: gambar(items[i]),
  52. title: Text(items[i].type),
  53. subtitle: Text(
  54. 'Description of ${items[i].type.toLowerCase()}'),
  55. trailing: IconDelete(),
  56. ),
  57. )),
  58. ),
  59. Divider(
  60. thickness: 8,
  61. ),
  62. AvailableMenu(),
  63. Column(
  64. children: List.generate(
  65. items.length,
  66. (i) => SizedBox(
  67. child: ListTile(
  68. leading: gambar(items[i]),
  69. title: Text(items[i].type),
  70. subtitle: Text(
  71. 'Description of ${items[i].type.toLowerCase()}'),
  72. trailing: IconAdd(),
  73. ),
  74. )),
  75. )
  76. ],
  77. ),
  78. ));
  79. }
  80. Container gambar(Data items) {
  81. return Container(
  82. decoration: BoxDecoration(
  83. border: Border.all(color: items.color),
  84. borderRadius: BorderRadius.all(Radius.circular(20)),
  85. color: items.color.withOpacity(0.4)),
  86. padding: const EdgeInsets.all(5.0),
  87. child: Image.asset(
  88. items.image,
  89. width: 36,
  90. height: 36,
  91. fit: BoxFit.cover,
  92. ),
  93. );
  94. }
  95. }
  96. class Data {
  97. String type;
  98. Color color;
  99. String image;
  100. Data({required this.type, required this.color, required this.image});
  101. }
  102. class AvailableMenu extends StatelessWidget {
  103. const AvailableMenu({
  104. Key? key,
  105. }) : super(key: key);
  106. @override
  107. Widget build(BuildContext context) {
  108. return Container(
  109. padding: const EdgeInsets.all(5.0),
  110. child: Row(
  111. children: [
  112. Text(
  113. 'Available Menu',
  114. textAlign: TextAlign.left,
  115. style: TextStyle(
  116. fontWeight: FontWeight.bold, color: Color(0xff292D32)),
  117. ),
  118. ],
  119. ),
  120. );
  121. }
  122. }
  123. class TopMenu extends StatelessWidget {
  124. const TopMenu({
  125. Key? key,
  126. }) : super(key: key);
  127. @override
  128. Widget build(BuildContext context) {
  129. return Container(
  130. padding: const EdgeInsets.all(5.0),
  131. child: Row(
  132. children: [
  133. Text(
  134. 'Top Menu',
  135. textAlign: TextAlign.left,
  136. style: TextStyle(
  137. fontWeight: FontWeight.bold, color: Color(0xff292D32)),
  138. ),
  139. Expanded(child: Container()),
  140. ElevatedButton(
  141. style: ElevatedButton.styleFrom(
  142. backgroundColor: Color(0xff078C84).withOpacity(0.1)),
  143. onPressed: () {
  144. print('Done');
  145. },
  146. child: Text(
  147. 'Done',
  148. style: TextStyle(
  149. color: Color(0xff078C84), fontWeight: FontWeight.w300),
  150. ))
  151. ],
  152. ),
  153. );
  154. }
  155. }
  156. class IconAdd extends StatelessWidget {
  157. const IconAdd({
  158. Key? key,
  159. }) : super(key: key);
  160. @override
  161. Widget build(BuildContext context) {
  162. return Icon(
  163. Icons.add_circle,
  164. color: Colors.red,
  165. );
  166. }
  167. }
  168. class IconDelete extends StatelessWidget {
  169. const IconDelete({
  170. Key? key,
  171. }) : super(key: key);
  172. @override
  173. Widget build(BuildContext context) {
  174. return Row(
  175. mainAxisSize: MainAxisSize.min,
  176. children: [
  177. Icon(
  178. Icons.do_not_disturb_on,
  179. color: Colors.red,
  180. ),
  181. SizedBox(width: 10),
  182. Icon(Icons.dehaze),
  183. ],
  184. );
  185. }
  186. }