I've heard from quite a few folks about how native development allowed applications to have a more platform-specific feeling, although nowadays frameworks seem to have a plethora of options to customize the app based on the platform, while allowing a much quicker development. Is there any point in developing native apps nowadays outside of some niche case?
(Disclaimer: I'm not advocating for frameworks or anything like that. I'm actually a native developer myself.)
The more layers you have, the more you have that may not work or work unexpectedly, poorly documented (EXIF data on iOS is interesting). You have to check every one of these layers to see what is going wrong when it does. Sometimes I cut out a small test sample to see if it works this way, then if it does, copy out that code in several places, on plugins and so on. Also build times are slower on anything that isn't native and that adds up to a lot on a complex codebase.
According to my data, a small fix (understood bug) takes about 2 hours on hybrid, 1 hour on native. Double as much if we don't know the source and need lots of testing.
But if you're making a CRUD app, by all means, use frameworks.