user4741788
user4741788

Reputation: 11

How to embed native android apis' in flutter?

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

Answers (3)

zacc
zacc

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

Arnold Parge
Arnold Parge

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

Collin Jackson
Collin Jackson

Reputation: 116838

The Flutter documentation on platform plugins explains how to interoperate with native APIs.

Upvotes: 0

Related Questions