组件是悬浮按钮组件 ;
FloatingActionButton 组件常用设置 :
点击事件 : onPressed ;
显示组件 : child ;
FloatingActionButton 构造函数源码 : 在构造函数的可选参数中...= null),
super(key: key);
}
其 onFresh 字段的类型是 RefreshCallback 类型的 ,
/// A function that's called...回调该方法 ;
异步方法 , 在方法体前添加 async 关键字 ;
该方法的主要作用是暂停 500 ms , 然后返回空 ;
/// RefreshIndicator 发生下拉操作时, 回调该方法...child 字段设置 , 这里设置了一个 ListView 列表组件 , 然后设置了下拉刷新回调方法 , 在 onRefresh 字段设置 ;
// 刷新指示器组件
RefreshIndicator...: 三目运算符
),
);
}
/// RefreshIndicator 发生下拉操作时, 回调该方法
/// 该方啊是一个异步方法 , 在方法体前添加 async 关键字