|
@@ -33,6 +33,7 @@ class ConsultationRecordFilter extends GetView<ConsultationRecordViewController>
|
|
|
width: 280,
|
|
|
child: SearchInput(
|
|
|
businessParent: this,
|
|
|
+ margin: EdgeInsets.all(0),
|
|
|
onChanged: (value) {
|
|
|
controller.keyWord = value;
|
|
|
},
|
|
@@ -69,6 +70,14 @@ class ConsultationRecordFilter extends GetView<ConsultationRecordViewController>
|
|
|
},
|
|
|
),
|
|
|
Expanded(child: FSizedBox()),
|
|
|
+ InkWell(
|
|
|
+ onTap: () {},
|
|
|
+ child: FIcon(
|
|
|
+ Icons.outbond,
|
|
|
+ color: FTheme.ins.colorScheme.primary,
|
|
|
+ ),
|
|
|
+ ),
|
|
|
+ const SizedBox(width: 10),
|
|
|
InkWell(
|
|
|
onTap: () {
|
|
|
controller.refreshData();
|
|
@@ -80,21 +89,22 @@ class ConsultationRecordFilter extends GetView<ConsultationRecordViewController>
|
|
|
),
|
|
|
const SizedBox(width: 10),
|
|
|
GetBuilder<ConsultationRecordViewController>(
|
|
|
- id: "record_more_filter_icon",
|
|
|
- builder: (_) {
|
|
|
- return FIconButton(
|
|
|
- businessParent: this,
|
|
|
- name: i18nBook.common.filter.t,
|
|
|
- onPressed: () {
|
|
|
- controller.openOrCloseMoreFilter();
|
|
|
- controller.scaffoldKey.currentState?.openEndDrawer();
|
|
|
- },
|
|
|
- icon: FIcon(
|
|
|
- Icons.filter_alt_rounded,
|
|
|
- color: FTheme.ins.colorScheme.primary,
|
|
|
- ),
|
|
|
- );
|
|
|
- }),
|
|
|
+ id: "record_more_filter_icon",
|
|
|
+ builder: (_) {
|
|
|
+ return FIconButton(
|
|
|
+ businessParent: this,
|
|
|
+ name: i18nBook.common.filter.t,
|
|
|
+ onPressed: () {
|
|
|
+ controller.openOrCloseMoreFilter();
|
|
|
+ controller.scaffoldKey.currentState?.openEndDrawer();
|
|
|
+ },
|
|
|
+ icon: FIcon(
|
|
|
+ Icons.filter_alt_rounded,
|
|
|
+ color: FTheme.ins.colorScheme.primary,
|
|
|
+ ),
|
|
|
+ );
|
|
|
+ },
|
|
|
+ ),
|
|
|
],
|
|
|
),
|
|
|
],
|