1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
| Widget _buildBrands() { return GetBuilder<SearchFilterController>( id: "filter_brands", builder: ( _) { return TagsListWidget( onTap: controller.onBrandTap, itemList: controller.brands, keys: controller.brandKeys, bgSelectedColor: AppColors.highlight, textSelectedColor: AppColors.onPrimary, borderRadius: 11, height: 17, width: 55, textSize: 9, textWeight: FontWeight.w400, ).paddingBottom(AppSpace.listRow * 2); }, ); }
Widget _buildGenders() { return GetBuilder<SearchFilterController>( id: "filter_genders", builder: ( _) { return TagsListWidget( onTap: controller.onGenderTap, itemList: controller.genders, keys: controller.genderKeys, bgSelectedColor: AppColors.highlight, textSelectedColor: AppColors.onPrimary, borderRadius: 11, height: 17, width: 55, textSize: 9, textWeight: FontWeight.w400, ).paddingBottom(AppSpace.listRow * 2); }, ); }
Widget _buildConditions() { return GetBuilder<SearchFilterController>( id: "filter_conditions", builder: ( _) { return TagsListWidget( onTap: controller.onConditionTap, itemList: controller.conditions, keys: controller.conditionKeys, bgSelectedColor: AppColors.highlight, textSelectedColor: AppColors.onPrimary, borderRadius: 11, height: 17, width: 55, textSize: 9, textWeight: FontWeight.w400, ).paddingBottom(AppSpace.listRow * 2); }, ); }
|