Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

React Native with Asp.net Core Web Api

I have developed asp.net core web project,

Which is working perfect.

Now i want to extend my dot net with web api and then i want to build mobile app with react native.

I have searched a lot for react native with asp.core web api sample.

But i couldn't find any. I don't know whether it is good to use react native with asp.net core or not.

Please if any body has any git repo or any good guide for that refer me.

Thanks

like image 884
Kashif Younus Avatar asked Nov 07 '22 06:11

Kashif Younus


1 Answers

I'm embarking on the same path at the moment. I have a website written in React JS and want to add apps using React Native. All the services are working and in place, so as such it will be possible to write React Native apps (many converted over from React JS by hand). All I need to do then is to call my dotnet core Restful Apis and happy days. I envisage no real issues with the approach.

The link https://rapidapi.com/blog/how-to-make-rest-api-calls-in-react-native/ shows how to call the api from React Native and I am sure there are countless other examples to follow. All these should be fairly straightforward.

IF anyone know a better approach please advise as I am eager to pick the best route through this.

like image 119
Regianni Avatar answered Nov 15 '22 07:11

Regianni