Flutter dilinde, lokasyon bilgisini almak için geolocator
adlı bir paket kullanabilirsiniz. İşte basit bir örnek:
- İlk olarak,
pubspec.yaml
dosyanıza aşağıdaki satırı ekleyerekgeolocator
paketini projenize ekleyin:
dependencies:
geolocator: ^7.2.0
Daha sonra, main.dart
dosyanıza aşağıdaki kodu ekleyerek kullanıcının mevcut konumunu alabilirsiniz:
import 'package:flutter/material.dart';
import 'package:geolocator/geolocator.dart';
void main() => runApp(LokasyonAlma());
class LokasyonAlma extends StatefulWidget {
@override
_LokasyonAlmaState createState() => _LokasyonAlmaState();
}
class _LokasyonAlmaState extends State<LokasyonAlma> {
Position _konum;
void _konumAl() async {
final Geolocator geolocator = Geolocator()..forceAndroidLocationManager = true;
Position position = await geolocator.getCurrentPosition(desiredAccuracy: LocationAccuracy.high);
setState(() {
_konum = position;
});
}
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: Text('Lokasyon Alma'),
),
body: Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
ElevatedButton(
onPressed: _konumAl,
child: Text('Konumunu Al'),
),
SizedBox(height: 20.0),
if (_konum != null)
Text(
'Enlem: ${_konum.latitude}\nBoylam: ${_konum.longitude}',
style: TextStyle(fontSize: 20.0),
textAlign: TextAlign.center,
),
],
),
),
),
);
}
}
Bu örnekte, getCurrentPosition
metodu kullanılarak mevcut konum bilgileri alınır ve ekranda görüntülenir. Konum almak için bir düğme kullanılır ve sonuçlar, Text
bileşeni içinde görüntülenir.