fateh999 / react-native-paper-form-builder

React Native Paper Form Builder with inbuilt Validation, dropdown, autocomplete, checkbox, switch and radio inputs.
MIT License
116 stars 25 forks source link

how to load data dynamically in autocomplete option #61

Open visharma14 opened 2 years ago

visharma14 commented 2 years ago

Im working on forms . but my data comes with api for dropdown the data . how to acheive data dynamically load on autocomplete option of form.

my api data is this type how to use option

api/Home/GetYear Response: {     "StatusCode": 200,     "Status": 1,     "Message": "Success",     "Response": [         {             "Year_Range": "2016-2017"         },         {             "Year_Range": "2017-2018"         },         {             "Year_Range": "2018-2019"         },         {             "Year_Range": "2019-2020"         }     ] }