Budget: 3500 UAH Deadline: 14 days
Good day ! I can realize for you such a functional (it is an experience of developing a variety of apps on Android)
Budget: 3500 UAH Deadline: 14 days
Good day ! I can realize for you such a functional (it is an experience of developing a variety of apps on Android)
Budget: 4000 UAH Deadline: 2 days
Good morning, I can write to you such an application from scratch, I have extensive experience in Android development, with geolocation as well. Let’s discuss details in personal messages and I’m executing the project in a short time. I will be happy to cooperate!
так, добавив його там, де сказав чат GPT, але далі маю помилку
Забудьте про чат гпт, відкрийте документацію по андроїд і по тим урокам чи прикладам зробіть.
https://stackoverflow.com/questions/58677698/how-to-use-android-location-helper-class-in-an-activity
Чат жбт не знает современных гайдов (ибо там залита старая инфа) . просто загуглите гайды по геолокации и все выйдет)
Доброго вечора, дякую за підказку! Якщо мені не вдасться чи я можу Вас допомогти мені (за грогі)? Бо я тільки почав працювати з Android Studio і не знаю чи я на вірному шляху.
Щось Ви відразу почали вивчати зі складного :) Звертайтесь- зробимо разом.
Привіт. Якщо проект ще актуальний, то хотів би отримати код для оцінки
import 'package:flutter/material.dart';
import 'package:geolocator/geolocator.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
useMaterial3: true,
),
home: const MyHomePage(title: 'Flutter Demo Home Page'),
);
}
}
class MyHomePage extends StatefulWidget {
const MyHomePage({super.key, required this.title});
final String title;
@override
State<MyHomePage> createState() => _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
int _counter = 0;
Position? _currentPosition; // Declare a Position variable to store the location
void _incrementCounter() {
setState(() {
_counter++;
});
}
// Asynchronous method to get the current location
_getCurrentLocation() async {
Position position = await Geolocator.getCurrentPosition(
desiredAccuracy: LocationAccuracy.high);
setState(() {
_currentPosition = position;
});
}
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
backgroundColor: Theme.of(context).colorScheme.inversePrimary,
title: Text(widget.title),
),
body: Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
const Text('You have pushed the button this many times:'),
Text(
'$_counter',
style: Theme.of(context).textTheme.headlineMedium,
),
// Display the current location if available
if (_currentPosition != null)
Text(
"LAT: ${_currentPosition!.latitude}, LNG: ${_currentPosition!.longitude}"),
ElevatedButton(
onPressed: () {
_getCurrentLocation(); // Call this method when the button is pressed
},
child: const Text("Get location"),
),
],
),
),
floatingActionButton: FloatingActionButton(
onPressed: _incrementCounter,
tooltip: 'Increment',
child: const Icon(Icons.add),
),
);
}
}
Все не складно. Якщо ви хочете бути програмістом - не використовуйте чати, вчить мови програмування, патерни тощо.
Якщо вам просто програму - замовьте в програмістів. Це суттєво збереже вам нерви.
Hybrid Mobile Apps 22 proposals 11:29
Apps for iOS (iPhone and iPad) 47 proposals 3 August
Apps for iOS (iPhone and iPad) 27 proposals 31 July
32 proposals 29 July
Apps for iOS (iPhone and iPad) 53 proposals 22 July