|
|
|
@ -58,8 +58,8 @@ class _DoctorReplyScreenState extends State<DoctorReplyScreen> {
|
|
|
|
child: NotificationListener(
|
|
|
|
child: NotificationListener(
|
|
|
|
child: ListView.builder(
|
|
|
|
child: ListView.builder(
|
|
|
|
scrollDirection: Axis.vertical,
|
|
|
|
scrollDirection: Axis.vertical,
|
|
|
|
|
|
|
|
itemCount: model.listDoctorWorkingHoursTable.length,
|
|
|
|
shrinkWrap: true,
|
|
|
|
shrinkWrap: true,
|
|
|
|
|
|
|
|
|
|
|
|
itemBuilder: (BuildContext ctxt, int index) {
|
|
|
|
itemBuilder: (BuildContext ctxt, int index) {
|
|
|
|
return Column(
|
|
|
|
return Column(
|
|
|
|
children: [
|
|
|
|
children: [
|
|
|
|
@ -92,7 +92,6 @@ class _DoctorReplyScreenState extends State<DoctorReplyScreen> {
|
|
|
|
onNotification: (t) {
|
|
|
|
onNotification: (t) {
|
|
|
|
if (t is ScrollEndNotification &&
|
|
|
|
if (t is ScrollEndNotification &&
|
|
|
|
model.state != ViewState.BusyLocal) {
|
|
|
|
model.state != ViewState.BusyLocal) {
|
|
|
|
print("${model.state}");
|
|
|
|
|
|
|
|
setState(() {
|
|
|
|
setState(() {
|
|
|
|
pageIndex++;
|
|
|
|
pageIndex++;
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|