React Native Show Message For Empty FlatList

Опубликовано: 04 Март 2026
на канале: Skptricks
814
3

React Native Show Message For Empty FlatList

NOTE : This is a demo after the post tutorial, to get complete information about this post/demo please do visit this blog (www.skptricks.com)

Post Link : https://www.skptricks.com/2018/11/rea...

This tutorial explains how to display empty message "No Data Available" in FlatList view in react native application, when there is not data present in FlatList data source object. Lets consider the scenarios where we have to load bulk data in FlatList view using server side rendering, in that case we need provide appropriate message to user for the request data and their corresponding response. Generally we are come across with below scenarios :
When data is available, then it will display the data in FlatList view using renderItem prop.
When data is not available, then it will display the error message "No Data Available" to user.