在index.js 文件中增加默認(rèn)值設(shè)置,F(xiàn)latList使用了RefreshControl組件滓鸠,所以需要給RefreshControl組件設(shè)置默認(rèn)屬性才能生效。
具體參考代碼:
RefreshControl.defaultProps = {
...RefreshControl.defaultProps,
colors: ['#1755C0'],
};
FlatList.defaultProps = {
...FlatList.defaultProps,
keyboardShouldPersistTaps: 'handled',
};