본문 바로가기
OLD_달려라/Android

Flutter ] 현재 위치 기반으로 검색하기 위한 Plugin

by 달승 2020. 9. 25.

 

 

 

geolocator | Flutter Package

Geolocation plugin for Flutter. This plugin provides a cross-platform (iOS, Android) API for generic location (GPS etc.) functions.

pub.dev

 

Use this package as a library

 

1. Depend on it

 

Add this to your package's pubspec.yaml file:

dependencies:
  geolocator: ^6.0.0+4

 

2. Install it

You can install packages from the command line:

with Flutter:

$ flutter pub get

Alternatively, your editor might support flutter pub get. Check the docs for your editor to learn more.

 

3. Import it

Now in your Dart code, you can use:

import 'package:geolocator/geolocator.dart';




 

 

댓글