1 00:00:02,360 --> 00:00:03,830 So this is it, 2 00:00:03,830 --> 00:00:07,020 this is how you can add native device features to your app, 3 00:00:07,040 --> 00:00:09,850 we added a lot of features in this module. 4 00:00:10,070 --> 00:00:11,650 We added the camera, 5 00:00:11,660 --> 00:00:17,720 we made sure we can get the user location by autolocating the user and also by showing a full map, 6 00:00:17,720 --> 00:00:24,060 an interactive map where you can scroll and zoom and then select the place, add a marker. 7 00:00:24,080 --> 00:00:30,620 We showed a map preview which was pretty neat and we stored that data not just in memory but we moved 8 00:00:30,620 --> 00:00:37,730 the file in our filesystem and we stored all data also with the help of SQLite in a real database 9 00:00:37,760 --> 00:00:42,150 that runs on our device and you learned how to set this all up and use that. 10 00:00:42,590 --> 00:00:48,230 Now as I mentioned multiple times in this module, the official expo docs are your friend, this is everything 11 00:00:48,230 --> 00:00:52,940 which is built in which should cover like 99.9% of use cases you might have. 12 00:00:52,940 --> 00:00:58,850 There are so many amazing features you can add to your applications and as you saw, adding is super super 13 00:00:58,850 --> 00:00:59,470 simple, 14 00:00:59,540 --> 00:01:00,670 it's mostly one command 15 00:01:00,680 --> 00:01:04,020 you have to run and then you can start using the package. Now 16 00:01:04,100 --> 00:01:09,380 nonetheless, you might have some niche use case where you have some functionality you need which isn't 17 00:01:09,380 --> 00:01:15,220 provided by expo or you have some other reason why you might want to build an app without expo and therefore, I'll 18 00:01:15,330 --> 00:01:20,480 also have a separate module as I already mentioned where I will show you how to build a React Native app 19 00:01:20,510 --> 00:01:25,430 without expo and I will also show there how you could still add native device features. 20 00:01:25,430 --> 00:01:32,180 My recommendation however would always be that you use expo because it's such a breeze to add such features 21 00:01:32,180 --> 00:01:33,470 to that app as you saw.