Reputation: 11
I'm a programming newbie , started coding may 2017.
I want to access location and storage of user's mobile in both Android and iPhone using flutter . Is there any way I can embed native Code in flutter?
Upvotes: 0
Views: 864
Reputation: 34
You might want to use this Flutter package for location access and there is a guide on Flutter's site about File I/O.
Upvotes: 0
Reputation: 6877
You can write platform specific code in Flutter, refer this doc
You can check this article about embedding flutter in native app.
Upvotes: 1
Reputation: 116838
The Flutter documentation on platform plugins explains how to interoperate with native APIs.
Upvotes: 0