Compare commits

...

12 Commits

Author SHA1 Message Date
782486d23b Atualização do mapa 2026-03-11 17:14:25 +00:00
256d34eb79 Simplificação do main.dart 2026-03-11 15:36:21 +00:00
f67ab0f40c Merge remote-tracking branch 'origin/main' 2026-03-06 11:46:43 +00:00
6b1d4b8cea Bluetooth e mapa a funcionar 2026-03-06 11:46:17 +00:00
8eeed78084 Eliminar lib/bluetooth_screen.dart 2026-03-06 11:17:31 +00:00
9e024f7db0 Eliminar lib/bluetooth_connection_screen.dart 2026-03-06 11:17:25 +00:00
05f54e6a37 Uso correto de app_colors.dart 2026-03-05 16:56:25 +00:00
85b00f6763 Merge remote-tracking branch 'origin/main' 2026-03-05 16:41:22 +00:00
eae4566182 Merge remote-tracking branch 'origin/main'
# Conflicts:
#	android/app/src/main/AndroidManifest.xml
#	lib/main.dart
#	lib/screens/google_map_screen.dart
#	macos/Flutter/GeneratedPluginRegistrant.swift
#	pubspec.lock
#	pubspec.yaml
#	windows/flutter/generated_plugin_registrant.cc
#	windows/flutter/generated_plugins.cmake
2026-03-05 16:27:19 +00:00
e20de5f992 Mudança na tela bluetooth 2026-02-26 17:35:05 +00:00
67811db547 Carregar ficheiros para "lib" 2026-02-26 16:45:47 +00:00
edba3e33c6 Tela conexão bluetooth 2026-02-26 16:39:27 +00:00
10 changed files with 1176 additions and 642 deletions

View File

@@ -1,21 +1,23 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<!-- Required for Bluetooth -->
<uses-permission android:name="android.permission.BLUETOOTH" android:maxSdkVersion="30" />
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN" android:maxSdkVersion="30" />
<uses-permission android:name="android.permission.BLUETOOTH_SCAN" />
<!-- Bluetooth permissions for Android 12 (API 31) and higher -->
<uses-permission android:name="android.permission.BLUETOOTH_SCAN" android:usesPermissionFlags="neverForLocation" />
<uses-permission android:name="android.permission.BLUETOOTH_CONNECT" />
<uses-permission android:name="android.permission.BLUETOOTH_ADVERTISE" />
<uses-feature android:name="android.hardware.bluetooth_le" android:required="false" />
<!-- Legacy Bluetooth permissions for Android 11 (API 30) and lower -->
<uses-permission android:name="android.permission.BLUETOOTH" android:maxSdkVersion="30" />
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN" android:maxSdkVersion="30" />
<!-- Location permissions (required for Bluetooth scanning on older Android versions) -->
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_BACKGROUND_LOCATION" />
<uses-permission android:name="android.permission.INTERNET" />
<application
android:label="teste_projeto_turma"
android:label="runvisionpro_app"
android:name="${applicationName}"
android:icon="@mipmap/ic_launcher">
<activity

View File

@@ -11,4 +11,10 @@ class AppColors {
// Neutral colors
static const Color backgroundGrey = Color.fromARGB(255, 89, 89, 89);
static const Color black = Colors.black;
// Status colors
static const Color error = Colors.red;
static const Color success = Colors.green;
static const Color transparent = Colors.transparent;
}

View File

@@ -14,28 +14,43 @@ class AppStrings {
// Bluetooth Screen
static const String bluetoothTitle = "DISPOSITIVOS";
static const String bluetoothConnect = "CONECTAR BLUETOOTH";
static const String statusSearching = "STATUS: BUSCANDO...";
static const String stopSearch = "PARAR BUSCA";
static const String startSearch = "BUSCAR AGORA";
static const String searching = "STATUS: BUSCANDO...";
static const String statusReady = "STATUS: PRONTO";
static const String statusConnected = "STATUS: CONECTADO";
static const String nearbyDevices = "Dispositivos próximos";
static const String active = "ATIVO";
static const String startSearchInstruction = "Inicie a busca para conectar";
static const String connect = "CONECTAR";
static const String noDevicesFound = "Nenhum dispositivo encontrado.";
static const String foundDevices = "Encontrados";
static const String oneDevice = "1 Dispositivo";
static const String permissionDenied = "Permissões de Bluetooth negadas.";
static const String permissionsDenied = "Permissões de Bluetooth negadas.";
static const String turnOnBluetooth = "Ligue o Bluetooth para buscar dispositivos.";
static const String scanError = "Erro ao iniciar scan: ";
static const String stopScanError = "Erro ao parar scan: ";
static const String defaultDeviceName = "Dispositivo";
static const String connectingTo = "Conectando a ";
static const String connectionSuccess = "Conectado com sucesso!";
static const String connectionError = "Erro ao conectar: ";
static const String connectedSuccess = "Conectado com sucesso!";
static const String connectFail = "Falha ao conectar: ";
static const String deviceIdPrefix = "Disp. [";
static const String unknownDevice = "Dispositivo Desconhecido";
static const String sendSignal = "ENVIAR SINAL";
static const String signalSent = "Sinal enviado com sucesso!";
static const String signalError = "Erro ao enviar sinal: ";
static const String noWritableChar = "Nenhuma característica de escrita encontrada.";
// Map Screen
static const String mapTitleTracking = "TRACKING ATIVO";
static const String mapTitlePlanning = "PLANEJAR TRAJETO";
static const String mapTitleRunning = "TOUHOU VIVA";
static const String mapTitleRunning = "CORRIDA";
static const String mapPace = "RITMO";
static const String mapRoute = "TRAJETO";
static const String mapTime = "TEMPO";
static const String kmhUnit = "KM/H";
static const String kmUnit = "KM";
static const String metersUnit = "M";
static const String planningInstruction = "Toque para definir Início e Fim";
static const String btnStop = "PARAR";
static const String btnSimulate = "SIMULAR";
@@ -43,4 +58,17 @@ class AppStrings {
static const String btnStopRun = "PARAR CORRIDA";
static const String startPoint = "Partida";
static const String finishPoint = "Chegada";
// New Run Strings
static const String markDestination = "Marcar destino final";
static const String chooseRoute = "Escolher percurso existente";
static const String confirmDestination = "Confirmar destino?";
static const String startRunning = "Iniciar corrida";
static const String cancel = "Cancelar";
static const String yes = "Sim";
static const String runFinished = "Corrida Finalizada!";
static const String totalDistance = "Distância total";
static const String totalTime = "Tempo total";
static const String saveRoute = "Salvar este percurso";
static const String close = "Fechar";
}

View File

@@ -1,517 +1,18 @@
import 'package:flutter/material.dart';
import 'constants/app_colors.dart';
import 'constants/app_strings.dart';
import 'screens/google_map_screen.dart';
import 'screens/bluetooth_connection_screen.dart';
import 'screens/welcome_screen.dart';
void main() {
// Ponto de entrada do aplicativo.
runApp(const MyApp());
}
/// Widget raiz do aplicativo que configura o MaterialApp.
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return const MaterialApp(
// Remove a bandeira de "debug" no canto superior direito.
debugShowCheckedModeBanner: false,
// Define a tela inicial como RunningScreen.
home: RunningScreen(),
home: WelcomeScreen(),
);
}
}
/// Tela principal que exibe o progresso, estatísticas e menu.
class RunningScreen extends StatefulWidget {
const RunningScreen({super.key});
@override
State<RunningScreen> createState() => _RunningScreenState();
}
class _RunningScreenState extends State<RunningScreen>
with SingleTickerProviderStateMixin {
// Variáveis de estado para controlar os dados da corrida.
double progress = 0.35; // Progresso inicial simulado para estética.
double targetDistance = 8.0; // Distância alvo em KM.
double currentDistance = 2.8; // Distância atual percorrida simulada.
/// Constrói o indicador de progresso circular central com melhorias estéticas.
Widget _buildCircularProgressIndicator() {
return SizedBox(
width: 210,
height: 210,
child: Stack(
alignment: Alignment.center,
children: [
// Efeito de brilho (glow) sutil atrás do progresso.
Container(
width: 180,
height: 180,
decoration: BoxDecoration(
shape: BoxShape.circle,
boxShadow: [
BoxShadow(
color: AppColors.white.withOpacity(0.05),
blurRadius: 30,
spreadRadius: 10,
),
],
),
),
// TweenAnimationBuilder cria uma animação suave quando o valor do progresso muda.
TweenAnimationBuilder<double>(
tween: Tween(begin: 0.0, end: progress),
duration: const Duration(seconds: 1),
curve: Curves.easeInOut,
builder: (context, value, _) {
return CustomPaint(
size: const Size(210, 210),
painter: CircularProgressPainter(
progress: value,
strokeWidth: 14,
progressColor: AppColors.white,
backgroundColor: AppColors.white.withOpacity(0.15),
),
);
},
),
// Círculo interno que contém o texto da porcentagem.
Container(
width: 175,
height: 175,
decoration: const BoxDecoration(
color: AppColors.backgroundGrey,
shape: BoxShape.circle,
),
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Text(
"${(progress * 100).toInt()}%",
style: const TextStyle(
fontSize: 42,
fontWeight: FontWeight.w900,
color: Colors.white,
letterSpacing: -1,
),
),
Text(
AppStrings.complete,
style: TextStyle(
color: Colors.white.withOpacity(0.5),
fontSize: 11,
fontWeight: FontWeight.bold,
letterSpacing: 1.5,
),
),
],
),
),
],
),
);
}
@override
Widget build(BuildContext context) {
return Scaffold(
backgroundColor: AppColors.background, // Cor de fundo escura definida nas constantes.
body: Stack(
children: [
// 1. Indicador de progresso circular posicionado no topo central.
Align(
alignment: Alignment.topCenter,
child: Padding(
padding: const EdgeInsets.only(top: 70),
child: _buildCircularProgressIndicator(),
),
),
// 2. Exibição da distância estilizada como um badge.
Positioned(
top: 300,
left: 0,
right: 0,
child: Center(
child: Container(
padding: const EdgeInsets.symmetric(horizontal: 22, vertical: 10),
decoration: BoxDecoration(
color: Colors.white.withOpacity(0.08),
borderRadius: BorderRadius.circular(25),
border: Border.all(color: Colors.white.withOpacity(0.1)),
),
child: Text(
"${currentDistance.toStringAsFixed(1)} ${AppStrings.kmUnit} | ${targetDistance.toStringAsFixed(1)} ${AppStrings.kmUnit}",
style: const TextStyle(
color: AppColors.white,
fontSize: 15,
fontWeight: FontWeight.w800,
letterSpacing: 0.5,
),
),
),
),
),
// 3. Contêiner de estatísticas e o mapa interativo.
Positioned(
top: 360,
left: 20,
right: 20,
child: Container(
height: 210,
decoration: BoxDecoration(
color: AppColors.backgroundGrey,
borderRadius: BorderRadius.circular(30),
boxShadow: [
BoxShadow(
color: Colors.black.withOpacity(0.3),
blurRadius: 20,
offset: const Offset(0, 10),
),
],
),
child: Row(
children: [
// Lado Esquerdo: Estatísticas.
Expanded(
flex: 4,
child: Padding(
padding: const EdgeInsets.symmetric(vertical: 20, horizontal: 15),
child: Column(
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
children: [
_buildStatItem(Icons.directions_run_rounded, "3219", AppStrings.steps),
Divider(color: Colors.white.withOpacity(0.1), height: 1),
_buildStatItem(Icons.favorite_rounded, "98", AppStrings.bpm),
Divider(color: Colors.white.withOpacity(0.1), height: 1),
_buildStatItem(Icons.local_fire_department_rounded, "480", AppStrings.kcal),
],
),
),
),
// Lado Direito: Miniatura do Mapa Clicável.
Expanded(
flex: 6,
child: GestureDetector(
onTap: () {
Navigator.push(
context,
MaterialPageRoute(builder: (context) => const GoogleMapScreen()),
);
},
child: Container(
margin: const EdgeInsets.all(8),
child: ClipRRect(
borderRadius: BorderRadius.circular(22),
child: Stack(
children: [
Container(color: const Color(0xFF2C2C2E)),
CustomPaint(
size: Size.infinite,
painter: MapPainter(),
),
// Overlay estético indicando interatividade.
Container(
decoration: BoxDecoration(
gradient: LinearGradient(
begin: Alignment.topCenter,
end: Alignment.bottomCenter,
colors: [
Colors.transparent,
Colors.black.withOpacity(0.4),
],
),
),
),
Positioned(
bottom: 12,
right: 12,
child: Container(
padding: const EdgeInsets.all(6),
decoration: BoxDecoration(
color: AppColors.background.withOpacity(0.8),
shape: BoxShape.circle,
),
child: const Icon(Icons.fullscreen_rounded, color: Colors.white, size: 20),
),
),
const Positioned(
top: 12,
left: 12,
child: Text(
AppStrings.mapPreview,
style: TextStyle(
color: Colors.white,
fontSize: 10,
fontWeight: FontWeight.w900,
letterSpacing: 1,
),
),
),
],
),
),
),
),
),
],
),
),
),
// 4. Barra de progresso linear centralizada.
Positioned(
bottom: 170,
left: 50,
right: 50,
child: ClipRRect(
borderRadius: BorderRadius.circular(10),
child: LinearProgressIndicator(
value: progress,
minHeight: 8,
backgroundColor: Colors.white.withOpacity(0.1),
valueColor: const AlwaysStoppedAnimation<Color>(AppColors.white),
),
),
),
// 5. Menu de navegação inferior.
Positioned(
bottom: 50,
left: 0,
right: 0,
child: Row(
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
children: [
_buildMenuButton(Icons.settings_outlined, AppStrings.settings),
_buildMenuButton(Icons.group_outlined, AppStrings.groups),
_buildMenuButton(Icons.history_rounded, AppStrings.history),
_buildMenuButton(Icons.notifications_none_rounded, AppStrings.notifications, showBadge: true),
_buildMenuButton(Icons.person_outline_rounded, AppStrings.profile, isAvatar: true),
],
),
),
// 6. Ação rápida de Bluetooth.
Positioned(
top: 60,
right: 25,
child: _buildSmallActionButton(Icons.bluetooth, Colors.red),
),
],
),
);
}
/// Item de estatística com design refinado.
Widget _buildStatItem(IconData icon, String value, String label) {
return Row(
children: [
Icon(icon, color: AppColors.coral.withOpacity(0.8), size: 22),
const SizedBox(width: 12),
Column(
crossAxisAlignment: CrossAxisAlignment.start,
mainAxisSize: MainAxisSize.min,
children: [
Text(
value,
style: const TextStyle(
color: Colors.white,
fontSize: 19,
fontWeight: FontWeight.w900,
),
),
Text(
label,
style: TextStyle(
color: Colors.white.withOpacity(0.4),
fontSize: 9,
fontWeight: FontWeight.bold,
letterSpacing: 0.5,
),
),
],
),
],
);
}
/// Botões do menu com melhorias visuais.
Widget _buildMenuButton(IconData icon, String message, {bool showBadge = false, bool isAvatar = false}) {
return GestureDetector(
onTap: () {
ScaffoldMessenger.of(context).showSnackBar(
SnackBar(
content: Text(message),
behavior: SnackBarBehavior.floating,
duration: const Duration(seconds: 1),
),
);
},
child: Stack(
clipBehavior: Clip.none,
children: [
isAvatar
? Container(
padding: const EdgeInsets.all(3),
decoration: BoxDecoration(
shape: BoxShape.circle,
border: Border.all(color: AppColors.coral, width: 2),
),
child: const CircleAvatar(
radius: 18,
backgroundImage: NetworkImage('https://i.pravatar.cc/150?u=1'),
),
)
: Container(
padding: const EdgeInsets.all(12),
decoration: BoxDecoration(
color: AppColors.backgroundGrey,
borderRadius: BorderRadius.circular(18),
border: Border.all(color: Colors.white.withOpacity(0.05)),
),
child: Icon(icon, color: Colors.white.withOpacity(0.9), size: 24),
),
if (showBadge)
Positioned(
right: -2,
top: -2,
child: Container(
width: 10,
height: 10,
decoration: BoxDecoration(
color: AppColors.coral,
shape: BoxShape.circle,
border: Border.all(color: AppColors.background, width: 2),
),
),
),
],
),
);
}
/// Botão de ação rápida (Bluetooth).
Widget _buildSmallActionButton(IconData icon, Color badgeColor) {
return GestureDetector(
onTap: () {
// Navegando para a nova tela de conexão Bluetooth
Navigator.push(
context,
MaterialPageRoute(builder: (context) => const BluetoothConnectionScreen()),
);
},
child: Container(
padding: const EdgeInsets.all(10),
decoration: BoxDecoration(
color: AppColors.backgroundGrey,
shape: BoxShape.circle,
border: Border.all(color: Colors.white.withOpacity(0.05)),
),
child: Stack(
children: [
Icon(icon, color: Colors.white, size: 20),
Positioned(
right: 0,
top: 0,
child: Container(
width: 7,
height: 7,
decoration: BoxDecoration(
color: badgeColor,
shape: BoxShape.circle,
border: Border.all(color: AppColors.backgroundGrey, width: 1.5),
),
),
),
],
),
),
);
}
}
/// Pintor customizado para o mapa miniatura estético.
class MapPainter extends CustomPainter {
@override
void paint(Canvas canvas, Size size) {
final paintPath = Paint()
..color = AppColors.coral.withOpacity(0.5)
..strokeWidth = 3
..style = PaintingStyle.stroke
..strokeCap = StrokeCap.round;
final path = Path();
path.moveTo(size.width * 0.1, size.height * 0.8);
path.quadraticBezierTo(size.width * 0.3, size.height * 0.9, size.width * 0.5, size.height * 0.5);
path.quadraticBezierTo(size.width * 0.7, size.height * 0.1, size.width * 0.9, size.height * 0.3);
final paintRoad = Paint()
..color = Colors.white.withOpacity(0.1)
..strokeWidth = 10
..style = PaintingStyle.stroke;
final road = Path();
road.moveTo(0, size.height * 0.5);
road.lineTo(size.width, size.height * 0.6);
canvas.drawPath(road, paintRoad);
canvas.drawPath(path, paintPath);
final markerPaint = Paint()..color = AppColors.coral;
canvas.drawCircle(Offset(size.width * 0.5, size.height * 0.5), 5, markerPaint);
canvas.drawCircle(Offset(size.width * 0.5, size.height * 0.5), 8, Paint()..color = AppColors.coral.withOpacity(0.3));
}
@override
bool shouldRepaint(CustomPainter oldDelegate) => false;
}
/// Pintor customizado para o arco de progresso circular.
class CircularProgressPainter extends CustomPainter {
final double progress;
final double strokeWidth;
final Color progressColor;
final Color backgroundColor;
CircularProgressPainter({
required this.progress,
required this.strokeWidth,
required this.progressColor,
required this.backgroundColor,
});
@override
void paint(Canvas canvas, Size size) {
final center = Offset(size.width / 2, size.height / 2);
final radius = (size.width - strokeWidth) / 2;
canvas.drawCircle(center, radius, Paint()
..color = backgroundColor
..strokeWidth = strokeWidth
..style = PaintingStyle.stroke);
final progressPaint = Paint()
..color = progressColor
..strokeWidth = strokeWidth
..style = PaintingStyle.stroke
..strokeCap = StrokeCap.round;
canvas.drawArc(
Rect.fromCircle(center: center, radius: radius),
-1.5708, // -90 graus em radianos
6.2831 * progress, // 360 graus em radianos * progresso
false,
progressPaint,
);
}
@override
bool shouldRepaint(covariant CircularProgressPainter oldDelegate) =>
oldDelegate.progress != progress;
}

View File

@@ -1,5 +1,6 @@
import 'dart:async';
import 'dart:io';
import 'dart:convert';
import 'package:flutter/material.dart';
import 'package:flutter_blue_plus/flutter_blue_plus.dart';
import 'package:permission_handler/permission_handler.dart';
@@ -16,7 +17,7 @@ class BluetoothConnectionScreen extends StatefulWidget {
class _BluetoothConnectionScreenState extends State<BluetoothConnectionScreen> {
List<ScanResult> _scanResults = [];
bool _isScanning = false;
BluetoothDevice? _connectedDevice; // Track connected device
BluetoothDevice? _connectedDevice;
late StreamSubscription<List<ScanResult>> _scanResultsSubscription;
late StreamSubscription<bool> _isScanningSubscription;
@@ -27,7 +28,7 @@ class _BluetoothConnectionScreenState extends State<BluetoothConnectionScreen> {
_scanResultsSubscription = FlutterBluePlus.scanResults.listen((results) {
if (mounted) {
setState(() {
// FILTRO: Mantém apenas dispositivos que possuem um nome identificado
// Filtra os dispositivos para mostrar apenas aqueles que possuem um nome identificado
_scanResults = results.where((r) => r.device.platformName.isNotEmpty).toList();
});
}
@@ -54,17 +55,31 @@ class _BluetoothConnectionScreenState extends State<BluetoothConnectionScreen> {
Map<Permission, PermissionStatus> statuses = await [
Permission.bluetoothScan,
Permission.bluetoothConnect,
Permission.bluetoothAdvertise,
Permission.location,
].request();
if (statuses[Permission.bluetoothScan]!.isGranted &&
statuses[Permission.bluetoothConnect]!.isGranted) {
bool allGranted = true;
if (statuses[Permission.bluetoothScan]?.isDenied ?? true) allGranted = false;
if (statuses[Permission.bluetoothConnect]?.isDenied ?? true) allGranted = false;
final bool scanPermanentlyDenied = statuses[Permission.bluetoothScan]?.isPermanentlyDenied ?? false;
final bool connectPermanentlyDenied = statuses[Permission.bluetoothConnect]?.isPermanentlyDenied ?? false;
if (scanPermanentlyDenied || connectPermanentlyDenied) {
if (mounted) {
_showSettingsDialog();
}
return;
}
if (allGranted) {
_startScan();
} else {
if (mounted) {
ScaffoldMessenger.of(context).showSnackBar(
const SnackBar(
content: Text(AppStrings.permissionDenied),
content: Text(AppStrings.permissionsDenied),
behavior: SnackBarBehavior.floating,
),
);
@@ -75,6 +90,29 @@ class _BluetoothConnectionScreenState extends State<BluetoothConnectionScreen> {
}
}
void _showSettingsDialog() {
showDialog(
context: context,
builder: (context) => AlertDialog(
title: const Text("Permissões Necessárias"),
content: const Text("As permissões de Bluetooth foram negadas permanentemente. Por favor, habilite-as nas configurações do sistema para continuar."),
actions: [
TextButton(
onPressed: () => Navigator.pop(context),
child: const Text("CANCELAR"),
),
TextButton(
onPressed: () {
openAppSettings();
Navigator.pop(context);
},
child: const Text("CONFIGURAÇÕES"),
),
],
),
);
}
Future<void> _startScan() async {
try {
if (await FlutterBluePlus.adapterState.first != BluetoothAdapterState.on) {
@@ -89,7 +127,9 @@ class _BluetoothConnectionScreenState extends State<BluetoothConnectionScreen> {
return;
}
await FlutterBluePlus.startScan(timeout: const Duration(seconds: 15));
await FlutterBluePlus.startScan(
timeout: const Duration(seconds: 15),
);
} catch (e) {
if (mounted) {
ScaffoldMessenger.of(context).showSnackBar(
@@ -136,8 +176,8 @@ class _BluetoothConnectionScreenState extends State<BluetoothConnectionScreen> {
FlutterBluePlus.stopScan();
ScaffoldMessenger.of(context).showSnackBar(
const SnackBar(
content: Text(AppStrings.connectionSuccess),
backgroundColor: Colors.green,
content: Text(AppStrings.connectedSuccess),
backgroundColor: AppColors.success,
behavior: SnackBarBehavior.floating,
),
);
@@ -146,8 +186,8 @@ class _BluetoothConnectionScreenState extends State<BluetoothConnectionScreen> {
if (mounted) {
ScaffoldMessenger.of(context).showSnackBar(
SnackBar(
content: Text('${AppStrings.connectionError}$e'),
backgroundColor: Colors.red,
content: Text('${AppStrings.connectFail}$e'),
backgroundColor: AppColors.error,
behavior: SnackBarBehavior.floating,
),
);
@@ -164,6 +204,63 @@ class _BluetoothConnectionScreenState extends State<BluetoothConnectionScreen> {
}
}
Future<void> _sendSignalToDevice() async {
if (_connectedDevice == null) return;
try {
// 1. Descobrir serviços do dispositivo
List<BluetoothService> services = await _connectedDevice!.discoverServices();
BluetoothCharacteristic? writableChar;
// 2. Procurar uma característica que permita escrita
for (var service in services) {
for (var char in service.characteristics) {
if (char.properties.write || char.properties.writeWithoutResponse) {
writableChar = char;
break;
}
}
if (writableChar != null) break;
}
if (writableChar != null) {
// 3. Enviar um sinal simples (ex: "1" em bytes)
await writableChar.write(utf8.encode("1"));
if (mounted) {
ScaffoldMessenger.of(context).showSnackBar(
const SnackBar(
content: Text(AppStrings.signalSent),
backgroundColor: AppColors.success,
behavior: SnackBarBehavior.floating,
),
);
}
} else {
if (mounted) {
ScaffoldMessenger.of(context).showSnackBar(
const SnackBar(
content: Text(AppStrings.noWritableChar),
backgroundColor: AppColors.error,
behavior: SnackBarBehavior.floating,
),
);
}
}
} catch (e) {
if (mounted) {
ScaffoldMessenger.of(context).showSnackBar(
SnackBar(
content: Text('${AppStrings.signalError}$e'),
backgroundColor: AppColors.error,
behavior: SnackBarBehavior.floating,
),
);
}
}
}
@override
Widget build(BuildContext context) {
return Scaffold(
@@ -190,7 +287,6 @@ class _BluetoothConnectionScreenState extends State<BluetoothConnectionScreen> {
Column(
children: [
const SizedBox(height: 20),
// Header Card
Padding(
padding: const EdgeInsets.symmetric(horizontal: 25),
child: Container(
@@ -198,10 +294,10 @@ class _BluetoothConnectionScreenState extends State<BluetoothConnectionScreen> {
decoration: BoxDecoration(
color: AppColors.backgroundGrey,
borderRadius: BorderRadius.circular(30),
border: Border.all(color: Colors.white.withOpacity(0.05)),
border: Border.all(color: Colors.white.withValues(alpha: 0.05)),
boxShadow: [
BoxShadow(
color: Colors.black.withOpacity(0.3),
color: Colors.black.withValues(alpha: 0.3),
blurRadius: 20,
offset: const Offset(0, 10),
),
@@ -216,7 +312,7 @@ class _BluetoothConnectionScreenState extends State<BluetoothConnectionScreen> {
Text(
_connectedDevice != null
? AppStrings.statusConnected
: (_isScanning ? AppStrings.statusSearching : AppStrings.statusReady),
: (_isScanning ? AppStrings.searching : AppStrings.statusReady),
style: TextStyle(
color: _connectedDevice != null ? Colors.greenAccent : (_isScanning ? AppColors.coral : Colors.white54),
fontSize: 10,
@@ -243,10 +339,10 @@ class _BluetoothConnectionScreenState extends State<BluetoothConnectionScreen> {
child: Container(
padding: const EdgeInsets.all(15),
decoration: BoxDecoration(
color: _isScanning ? Colors.red.withOpacity(0.1) : AppColors.coral.withOpacity(0.1),
color: _isScanning ? Colors.red.withValues(alpha: 0.1) : AppColors.coral.withValues(alpha: 0.1),
shape: BoxShape.circle,
border: Border.all(
color: _isScanning ? Colors.red.withOpacity(0.5) : AppColors.coral.withOpacity(0.5),
color: _isScanning ? Colors.red.withValues(alpha: 0.5) : AppColors.coral.withValues(alpha: 0.5),
width: 2,
),
),
@@ -263,10 +359,10 @@ class _BluetoothConnectionScreenState extends State<BluetoothConnectionScreen> {
child: Container(
padding: const EdgeInsets.all(15),
decoration: BoxDecoration(
color: Colors.red.withOpacity(0.1),
color: Colors.red.withValues(alpha: 0.1),
shape: BoxShape.circle,
border: Border.all(
color: Colors.red.withOpacity(0.5),
color: Colors.red.withValues(alpha: 0.5),
width: 2,
),
),
@@ -282,7 +378,35 @@ class _BluetoothConnectionScreenState extends State<BluetoothConnectionScreen> {
),
),
const SizedBox(height: 30),
// Device List
// Se houver um dispositivo conectado, mostra o botão de enviar sinal
if (_connectedDevice != null)
Padding(
padding: const EdgeInsets.symmetric(horizontal: 25),
child: SizedBox(
width: double.infinity,
height: 60,
child: ElevatedButton.icon(
onPressed: _sendSignalToDevice,
icon: const Icon(Icons.send_rounded),
label: const Text(
AppStrings.sendSignal,
style: TextStyle(fontWeight: FontWeight.bold, letterSpacing: 1.2),
),
style: ElevatedButton.styleFrom(
backgroundColor: AppColors.coral,
foregroundColor: Colors.white,
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(20),
),
elevation: 5,
),
),
),
),
const SizedBox(height: 20),
Expanded(
child: ListView.builder(
itemCount: _connectedDevice != null ? 1 : _scanResults.length,
@@ -297,21 +421,21 @@ class _BluetoothConnectionScreenState extends State<BluetoothConnectionScreen> {
child: Container(
padding: const EdgeInsets.all(20),
decoration: BoxDecoration(
color: AppColors.backgroundGrey.withOpacity(0.4),
color: AppColors.backgroundGrey.withValues(alpha: 0.4),
borderRadius: BorderRadius.circular(25),
border: Border.all(color: Colors.white.withOpacity(0.03)),
border: Border.all(color: Colors.white.withValues(alpha: 0.03)),
),
child: Row(
children: [
Container(
padding: const EdgeInsets.all(12),
decoration: BoxDecoration(
color: AppColors.background.withOpacity(0.8),
color: AppColors.background.withValues(alpha: 0.8),
borderRadius: BorderRadius.circular(15),
),
child: Icon(
Icons.bluetooth_audio_rounded,
color: _connectedDevice != null ? Colors.greenAccent : AppColors.coral.withOpacity(0.8),
color: _connectedDevice != null ? Colors.greenAccent : AppColors.coral.withValues(alpha: 0.8),
size: 24
),
),
@@ -357,13 +481,13 @@ class _BluetoothConnectionScreenState extends State<BluetoothConnectionScreen> {
],
),
if (_isScanning)
Positioned(
const Positioned(
bottom: 0,
left: 0,
right: 0,
child: LinearProgressIndicator(
backgroundColor: Colors.transparent,
valueColor: const AlwaysStoppedAnimation<Color>(AppColors.coral),
valueColor: AlwaysStoppedAnimation<Color>(AppColors.coral),
minHeight: 2,
),
),

View File

@@ -5,6 +5,7 @@ import 'package:flutter/foundation.dart';
import 'package:flutter/material.dart';
import 'package:google_maps_flutter/google_maps_flutter.dart';
import 'package:geolocator/geolocator.dart';
import 'package:flutter_polyline_points/flutter_polyline_points.dart';
import '../constants/app_colors.dart';
import '../constants/app_strings.dart';
@@ -16,27 +17,31 @@ class GoogleMapScreen extends StatefulWidget {
}
class _GoogleMapScreenState extends State<GoogleMapScreen> {
// CONFIGURAÇÃO: Insira aqui sua chave da Google Cloud com Directions API ativa
final String googleApiKey = "AIzaSyCk84rxmF044cxKLABf55rEKHDqOcyoV5k";
GoogleMapController? _mapController;
StreamSubscription<Position>? _positionStreamSubscription;
Timer? _simulationTimer;
Timer? _stopwatchTimer;
// Controle de frequência de atualização para evitar sobrecarga e crashes
DateTime? _lastUpdate;
final List<LatLng> _routePoints = [];
List<LatLng> _remainingPlannedPoints = []; // Lista para o trajeto que encurta
final Set<Polyline> _polylines = {};
final Set<Marker> _markers = {};
LatLng? _plannedStart;
LatLng? _plannedEnd;
bool _isPlanningMode = false;
bool _isRunning = false;
bool _isLoading = true;
double _currentSpeed = 0.0;
double _totalDistance = 0.0;
LatLng _currentPosition = const LatLng(38.7223, -9.1393);
bool _isLoading = true;
bool _isSimulating = false;
int _secondsElapsed = 0;
int _countdownValue = 3;
bool _isCountingDown = false;
BitmapDescriptor? _startIcon;
BitmapDescriptor? _arrowIcon;
@@ -49,10 +54,10 @@ class _GoogleMapScreenState extends State<GoogleMapScreen> {
}
Future<void> _setupIconsAndTracking() async {
// Marcadores premium: tamanho ideal para visibilidade e estética
_startIcon = await _createPremiumMarker(Colors.greenAccent, Icons.play_arrow_rounded, 85);
_finishIcon = await _createPremiumMarker(AppColors.coral, Icons.flag_rounded, 85);
_arrowIcon = await _createArrowMarker(Colors.black, Colors.white, 95);
_startIcon = await _createPremiumMarker(Colors.greenAccent, Icons.play_arrow_rounded, 50);
_finishIcon = await _createPremiumMarker(AppColors.coral, Icons.flag_rounded, 65);
// Borda agora é proporcional ao tamanho (25).
_arrowIcon = await _createArrowMarker(Colors.black, Colors.white, 85);
await _initTracking();
}
@@ -81,9 +86,14 @@ class _GoogleMapScreenState extends State<GoogleMapScreen> {
path.lineTo(size / 2, size * 0.7);
path.lineTo(size * 0.1, size);
path.close();
canvas.drawPath(path.shift(const Offset(0, 4)), Paint()..color = Colors.black38..maskFilter = const MaskFilter.blur(BlurStyle.normal, 4));
canvas.drawPath(path, Paint()..color = color);
canvas.drawPath(path, Paint()..color = borderColor..style = ui.PaintingStyle.stroke..strokeWidth = 7);
// CORREÇÃO: Borda escala proporcionalmente (12% do tamanho)
double strokeWidth = size * 0.12;
canvas.drawPath(path, Paint()..color = borderColor..style = ui.PaintingStyle.stroke..strokeWidth = strokeWidth);
final ui.Image image = await recorder.endRecording().toImage(size.toInt(), size.toInt() + 6);
final ByteData? byteData = await image.toByteData(format: ui.ImageByteFormat.png);
return BitmapDescriptor.fromBytes(byteData!.buffer.asUint8List());
@@ -92,7 +102,7 @@ class _GoogleMapScreenState extends State<GoogleMapScreen> {
@override
void dispose() {
_positionStreamSubscription?.cancel();
_simulationTimer?.cancel();
_stopwatchTimer?.cancel();
_mapController?.dispose();
super.dispose();
}
@@ -107,58 +117,68 @@ class _GoogleMapScreenState extends State<GoogleMapScreen> {
}
Position position = await Geolocator.getCurrentPosition(desiredAccuracy: LocationAccuracy.bestForNavigation);
_currentPosition = LatLng(position.latitude, position.longitude);
// Adiciona ponto inicial para permitir rotação imediata
_routePoints.add(_currentPosition);
setState(() => _isLoading = false);
_updateMarkers(); // Força a exibição imediata
_startLocationStream();
}
void _startLocationStream() {
_positionStreamSubscription = Geolocator.getPositionStream(
locationSettings: const LocationSettings(
accuracy: LocationAccuracy.bestForNavigation,
distanceFilter: 0
)
locationSettings: const LocationSettings(accuracy: LocationAccuracy.bestForNavigation, distanceFilter: 0)
).listen((Position position) {
if (!_isSimulating) {
final now = DateTime.now();
if (_lastUpdate == null || now.difference(_lastUpdate!).inMilliseconds > 500) {
_lastUpdate = now;
_updatePosition(LatLng(position.latitude, position.longitude), position.speed);
}
}
}, onError: (error) {
debugPrint("${AppStrings.unknownDevice}: $error");
});
}
void _updatePosition(LatLng newPoint, double speed) {
if (!mounted) return;
setState(() {
if (_isRunning) {
if (_routePoints.isNotEmpty) {
_totalDistance += Geolocator.distanceBetween(_currentPosition.latitude, _currentPosition.longitude, newPoint.latitude, newPoint.longitude);
}
_currentSpeed = speed >= 0 ? speed : 0;
_routePoints.add(newPoint);
_updateTraveledPolylines();
// Lógica para consumir o trajeto planejado à medida que passamos por ele
if (_remainingPlannedPoints.isNotEmpty) {
while (_remainingPlannedPoints.length > 1) {
double distanceToPoint = Geolocator.distanceBetween(
newPoint.latitude, newPoint.longitude,
_remainingPlannedPoints[0].latitude, _remainingPlannedPoints[0].longitude
);
// Se estivermos a menos de 15m do ponto do trajeto, removemo-lo
if (distanceToPoint < 15) {
_remainingPlannedPoints.removeAt(0);
} else {
break;
}
}
_updateRemainingPolyline();
}
} else {
// Antes da corrida, mantém os últimos pontos para calcular a rotação
if (_routePoints.length >= 2) _routePoints.removeAt(0);
_routePoints.add(newPoint);
}
_currentSpeed = speed >= 0 ? speed : 0;
_currentPosition = newPoint;
_updateMarkers();
if (_routePoints.length > 1) {
_polylines.removeWhere((p) => p.polylineId.value == 'route' || p.polylineId.value == 'route_glow');
_polylines.add(Polyline(
polylineId: const PolylineId('route_glow'),
points: List.from(_routePoints),
color: Colors.cyanAccent.withOpacity(0.3),
width: 14,
zIndex: 9,
));
_polylines.add(Polyline(
polylineId: const PolylineId('route'),
points: List.from(_routePoints),
color: Colors.white,
width: 6,
patterns: [PatternItem.dot, PatternItem.gap(15)],
jointType: JointType.round,
zIndex: 10,
));
if (_plannedEnd != null && _isRunning) {
double distToEnd = Geolocator.distanceBetween(newPoint.latitude, newPoint.longitude, _plannedEnd!.latitude, _plannedEnd!.longitude);
if (distToEnd < 15) {
_finishRun();
}
}
});
@@ -167,6 +187,30 @@ class _GoogleMapScreenState extends State<GoogleMapScreen> {
}
}
void _updateTraveledPolylines() {
if (_routePoints.length > 1) {
_polylines.removeWhere((p) => p.polylineId.value == 'route' || p.polylineId.value == 'route_glow');
_polylines.add(Polyline(polylineId: const PolylineId('route_glow'), points: List.from(_routePoints), color: Colors.cyanAccent.withOpacity(0.3), width: 14, zIndex: 9));
_polylines.add(Polyline(polylineId: const PolylineId('route'), points: List.from(_routePoints), color: Colors.white, width: 6, patterns: [PatternItem.dot, PatternItem.gap(15)], jointType: JointType.round, zIndex: 10));
}
}
void _updateRemainingPolyline() {
_polylines.removeWhere((p) => p.polylineId.value == 'planned_preview');
if (_remainingPlannedPoints.isNotEmpty) {
// A linha coral começa na posição atual do usuário e segue o que resta
List<LatLng> pointsToDraw = [_currentPosition, ..._remainingPlannedPoints];
_polylines.add(Polyline(
polylineId: const PolylineId('planned_preview'),
points: pointsToDraw,
color: AppColors.coral.withOpacity(0.5),
width: 4,
patterns: [PatternItem.dash(20), PatternItem.gap(10)],
zIndex: 8,
));
}
}
void _updateMarkers() {
_markers.removeWhere((m) => m.markerId.value == 'follower');
_markers.add(Marker(
@@ -176,7 +220,7 @@ class _GoogleMapScreenState extends State<GoogleMapScreen> {
flat: true,
anchor: const Offset(0.5, 0.5),
icon: _arrowIcon ?? BitmapDescriptor.defaultMarker,
zIndex: 12,
zIndex: 12
));
}
@@ -187,76 +231,298 @@ class _GoogleMapScreenState extends State<GoogleMapScreen> {
return Geolocator.bearingBetween(p1.latitude, p1.longitude, p2.latitude, p2.longitude);
}
void _onMapTap(LatLng point) {
Future<List<LatLng>> _getRoutePolyline(LatLng start, LatLng end) async {
try {
PolylinePoints polylinePoints = PolylinePoints();
PolylineResult result = await polylinePoints.getRouteBetweenCoordinates(
request: PolylineRequest(
origin: PointLatLng(start.latitude, start.longitude),
destination: PointLatLng(end.latitude, end.longitude),
mode: TravelMode.walking,
),
googleApiKey: googleApiKey,
);
List<LatLng> coords = [];
if (result.points.isNotEmpty) {
for (var point in result.points) {
coords.add(LatLng(point.latitude, point.longitude));
}
}
return coords;
} catch (e) {
debugPrint("Erro ao buscar rota: $e");
return [];
}
}
void _onMapTap(LatLng point) async {
if (!_isPlanningMode) return;
setState(() {
if (_plannedStart == null) {
_plannedStart = point;
_markers.add(Marker(markerId: const MarkerId('planned_start'), position: point, icon: _startIcon ?? BitmapDescriptor.defaultMarker, zIndex: 5, infoWindow: const InfoWindow(title: AppStrings.startPoint)));
} else if (_plannedEnd == null) {
_plannedEnd = point;
_markers.removeWhere((m) => m.markerId.value == 'planned_end');
_markers.add(Marker(markerId: const MarkerId('planned_end'), position: point, icon: _finishIcon ?? BitmapDescriptor.defaultMarker, zIndex: 5, infoWindow: const InfoWindow(title: AppStrings.finishPoint)));
_polylines.add(Polyline(polylineId: const PolylineId('planned_route'), points: [_plannedStart!, _plannedEnd!], color: Colors.white.withOpacity(0.1), width: 2, zIndex: 1));
} else {
_plannedStart = point;
_plannedEnd = null;
_markers.removeWhere((m) => m.markerId.value.startsWith('planned'));
_polylines.removeWhere((p) => p.polylineId.value == 'planned_route');
_markers.add(Marker(markerId: const MarkerId('planned_start'), position: point, icon: _startIcon ?? BitmapDescriptor.defaultMarker, zIndex: 5, infoWindow: const InfoWindow(title: AppStrings.startPoint)));
}
});
List<LatLng> streetPoints = await _getRoutePolyline(_currentPosition, point);
if (streetPoints.isEmpty) {
streetPoints = [_currentPosition, point];
}
void _toggleSimulation() {
if (_isSimulating) {
_simulationTimer?.cancel();
setState(() => _isSimulating = false);
} else {
setState(() {
_isSimulating = true;
_remainingPlannedPoints = List.from(streetPoints);
_updateRemainingPolyline();
});
_showConfirmationDialog();
}
void _showStartOptions() {
showModalBottomSheet(
context: context,
backgroundColor: Colors.transparent,
builder: (context) => Container(
margin: const EdgeInsets.all(20),
decoration: BoxDecoration(color: AppColors.backgroundGrey, borderRadius: BorderRadius.circular(30), border: Border.all(color: Colors.white10)),
child: Column(
mainAxisSize: MainAxisSize.min,
children: [
const SizedBox(height: 15),
Container(width: 40, height: 4, decoration: BoxDecoration(color: Colors.white24, borderRadius: BorderRadius.circular(2))),
const SizedBox(height: 25),
_buildOptionTile(Icons.location_on_rounded, AppStrings.markDestination, () {
Navigator.pop(context);
setState(() => _isPlanningMode = true);
}),
const Divider(color: Colors.white10, indent: 20, endIndent: 20),
_buildOptionTile(Icons.history_rounded, AppStrings.chooseRoute, () {
Navigator.pop(context);
}),
const SizedBox(height: 20),
],
),
),
);
}
void _showConfirmationDialog() {
showDialog(
context: context,
builder: (context) => AlertDialog(
backgroundColor: AppColors.backgroundGrey,
shape: RoundedRectangleBorder(borderRadius: BorderRadius.circular(25)),
title: const Text(AppStrings.confirmDestination, style: TextStyle(color: Colors.white, fontWeight: FontWeight.bold)),
actions: [
TextButton(onPressed: () => Navigator.pop(context), child: const Text(AppStrings.cancel, style: TextStyle(color: Colors.white54))),
ElevatedButton(
onPressed: () {
Navigator.pop(context);
_startCountdown();
},
style: ElevatedButton.styleFrom(backgroundColor: AppColors.coral, shape: RoundedRectangleBorder(borderRadius: BorderRadius.circular(15))),
child: const Text(AppStrings.yes, style: TextStyle(color: Colors.white, fontWeight: FontWeight.bold)),
),
],
),
);
}
void _startCountdown() {
setState(() {
_isCountingDown = true;
_countdownValue = 3;
_isPlanningMode = false;
_routePoints.clear();
_polylines.removeWhere((p) => p.polylineId.value == 'route' || p.polylineId.value == 'route_glow');
});
Timer.periodic(const Duration(seconds: 1), (timer) {
if (_countdownValue == 1) {
timer.cancel();
_startRun();
} else {
setState(() => _countdownValue--);
}
});
}
void _startRun() {
setState(() {
_isCountingDown = false;
_isRunning = true;
_totalDistance = 0.0;
_currentPosition = _plannedStart ?? _currentPosition;
_secondsElapsed = 0;
_routePoints.clear();
_routePoints.add(_currentPosition);
_updateMarkers();
});
_simulationTimer = Timer.periodic(const Duration(milliseconds: 100), (timer) {
double latStep = 0.000025;
double lngStep = 0.000025;
if (_plannedEnd != null) {
double dist = Geolocator.distanceBetween(_currentPosition.latitude, _currentPosition.longitude, _plannedEnd!.latitude, _plannedEnd!.longitude);
if (dist < 2) {
_updatePosition(_plannedEnd!, 0.0);
_toggleSimulation();
return;
}
latStep = (_plannedEnd!.latitude - _currentPosition.latitude) / (max(dist / 0.8, 1));
lngStep = (_plannedEnd!.longitude - _currentPosition.longitude) / (max(dist / 0.8, 1));
}
LatLng nextPoint = LatLng(_currentPosition.latitude + latStep, _currentPosition.longitude + lngStep);
_updatePosition(nextPoint, 3.5 + Random().nextDouble() * 0.5);
_stopwatchTimer = Timer.periodic(const Duration(seconds: 1), (timer) {
setState(() => _secondsElapsed++);
});
}
void _finishRun() {
_stopwatchTimer?.cancel();
setState(() {
_isRunning = false;
_remainingPlannedPoints.clear();
_polylines.removeWhere((p) => p.polylineId.value == 'planned_preview');
});
showDialog(
context: context,
barrierDismissible: false,
builder: (context) => AlertDialog(
backgroundColor: AppColors.backgroundGrey,
shape: RoundedRectangleBorder(borderRadius: BorderRadius.circular(30)),
content: Column(
mainAxisSize: MainAxisSize.min,
children: [
const Icon(Icons.check_circle_rounded, color: Colors.greenAccent, size: 70),
const SizedBox(height: 20),
const Text(AppStrings.runFinished, style: TextStyle(color: Colors.white, fontSize: 22, fontWeight: FontWeight.w900)),
const SizedBox(height: 25),
_buildResultRow(AppStrings.totalDistance, _formatDistance(_totalDistance)),
const SizedBox(height: 15),
_buildResultRow(AppStrings.totalTime, _formatTime(_secondsElapsed)),
const SizedBox(height: 30),
SizedBox(
width: double.infinity,
child: ElevatedButton(
onPressed: () => Navigator.pop(context),
style: ElevatedButton.styleFrom(backgroundColor: AppColors.coral, padding: const EdgeInsets.symmetric(vertical: 15), shape: RoundedRectangleBorder(borderRadius: BorderRadius.circular(15))),
child: const Text(AppStrings.close, style: TextStyle(fontWeight: FontWeight.bold)),
),
),
],
),
),
);
}
String _formatDistance(double meters) {
if (meters < 1000) return "${meters.toStringAsFixed(0)} ${AppStrings.metersUnit}";
return "${(meters / 1000).toStringAsFixed(2)} ${AppStrings.kmUnit}";
}
String _formatTime(int seconds) {
int hours = seconds ~/ 3600;
int minutes = (seconds % 3600) ~/ 60;
int remainingSeconds = seconds % 60;
return "${hours.toString().padLeft(2, '0')}:${minutes.toString().padLeft(2, '0')}:${remainingSeconds.toString().padLeft(2, '0')}";
}
@override
Widget build(BuildContext context) {
return Scaffold(
backgroundColor: AppColors.background,
appBar: AppBar(title: Text(_isPlanningMode ? AppStrings.mapTitlePlanning : AppStrings.mapTitleRunning, style: const TextStyle(fontWeight: FontWeight.w900, color: Colors.white, letterSpacing: 2)), centerTitle: true, backgroundColor: Colors.transparent, elevation: 0, leading: IconButton(icon: const Icon(Icons.arrow_back_ios_new, color: Colors.white), onPressed: () => Navigator.pop(context)), actions: [IconButton(icon: Icon(_isPlanningMode ? Icons.check_circle_rounded : Icons.add_location_alt_rounded, color: AppColors.coral, size: 30), onPressed: () => setState(() => _isPlanningMode = !_isPlanningMode))]),
appBar: AppBar(title: Text(_isRunning ? AppStrings.mapTitleRunning : AppStrings.mapTitlePlanning, style: const TextStyle(fontWeight: FontWeight.w900, color: Colors.white, letterSpacing: 2)), centerTitle: true, backgroundColor: Colors.transparent, elevation: 0, leading: IconButton(icon: const Icon(Icons.arrow_back_ios_new, color: Colors.white), onPressed: () => Navigator.pop(context))),
extendBodyBehindAppBar: true,
body: Stack(children: [Center(child: Container(width: MediaQuery.of(context).size.width * 0.94, height: MediaQuery.of(context).size.height * 0.7, decoration: BoxDecoration(color: AppColors.backgroundGrey, borderRadius: BorderRadius.circular(55), border: Border.all(color: Colors.white.withOpacity(0.1), width: 3), boxShadow: [BoxShadow(color: Colors.black.withOpacity(0.7), blurRadius: 50, offset: const Offset(0, 30))]), child: ClipRRect(borderRadius: BorderRadius.circular(52), child: _isLoading ? const Center(child: CircularProgressIndicator(color: AppColors.coral)) : GoogleMap(initialCameraPosition: CameraPosition(target: _currentPosition, zoom: 17.5), onMapCreated: (controller) => _mapController = controller, onTap: _onMapTap, markers: _markers, polylines: _polylines, zoomControlsEnabled: false, myLocationButtonEnabled: false, compassEnabled: false, mapToolbarEnabled: false)))), Positioned(top: 115, left: 45, right: 45, child: Container(padding: const EdgeInsets.symmetric(vertical: 20, horizontal: 25), decoration: BoxDecoration(color: AppColors.background.withOpacity(0.95), borderRadius: BorderRadius.circular(25), border: Border.all(color: Colors.white10), boxShadow: [BoxShadow(color: Colors.black26, blurRadius: 10)]), child: Row(mainAxisAlignment: MainAxisAlignment.spaceAround, children: [_buildStat(AppStrings.mapPace, "${(_currentSpeed * 3.6).toStringAsFixed(1)}", AppStrings.kmhUnit), Container(width: 1, height: 35, color: Colors.white10), _buildStat(AppStrings.mapRoute, (_totalDistance / 1000).toStringAsFixed(2), AppStrings.kmUnit)]))), if (_isPlanningMode) Positioned(bottom: 140, left: 60, right: 60, child: Container(padding: const EdgeInsets.all(12), decoration: BoxDecoration(color: Colors.black.withOpacity(0.85), borderRadius: BorderRadius.circular(20), border: Border.all(color: AppColors.coral.withOpacity(0.5))), child: const Text(AppStrings.planningInstruction, textAlign: TextAlign.center, style: TextStyle(color: Colors.white, fontSize: 13, fontWeight: FontWeight.bold))))]),
floatingActionButton: FloatingActionButton.extended(onPressed: _toggleSimulation, label: Text(_isSimulating ? AppStrings.btnStop : AppStrings.btnStartRun, style: const TextStyle(fontWeight: FontWeight.w900, letterSpacing: 1.5)), icon: Icon(_isSimulating ? Icons.stop_rounded : Icons.play_arrow_rounded, size: 32), backgroundColor: _isSimulating ? AppColors.coral : Colors.white, foregroundColor: _isSimulating ? Colors.white : AppColors.background, elevation: 15),
body: Stack(
children: [
Center(
child: Container(
width: MediaQuery.of(context).size.width * 0.94, height: MediaQuery.of(context).size.height * 0.7,
decoration: BoxDecoration(color: AppColors.backgroundGrey, borderRadius: BorderRadius.circular(55), border: Border.all(color: Colors.white10, width: 3), boxShadow: const [BoxShadow(color: Colors.black54, blurRadius: 40)]),
child: ClipRRect(borderRadius: BorderRadius.circular(52), child: _isLoading ? const Center(child: CircularProgressIndicator(color: AppColors.coral)) : GoogleMap(initialCameraPosition: CameraPosition(target: _currentPosition, zoom: 17.5), onMapCreated: (controller) => _mapController = controller, onTap: _onMapTap, markers: _markers, polylines: _polylines, zoomControlsEnabled: false, myLocationButtonEnabled: false, compassEnabled: false, mapToolbarEnabled: false))
),
),
Positioned(
top: 115, left: 20, right: 20,
child: Container(
padding: const EdgeInsets.symmetric(vertical: 20),
decoration: BoxDecoration(color: AppColors.background.withOpacity(0.95), borderRadius: BorderRadius.circular(25), border: Border.all(color: Colors.white10)),
child: Row(
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
children: [
_buildStat(AppStrings.mapPace, (_currentSpeed * 3.6).toStringAsFixed(1), AppStrings.kmhUnit),
_buildDivider(),
_buildStat(AppStrings.mapRoute, _formatDistanceValue(_totalDistance), _totalDistance < 1000 ? AppStrings.metersUnit : AppStrings.kmUnit),
_buildDivider(),
_buildStat(AppStrings.mapTime, _formatTimeShort(_secondsElapsed), ""),
],
),
),
),
if (_isCountingDown)
Container(
color: Colors.black54,
child: Center(
child: Text("$_countdownValue", style: const TextStyle(color: Colors.white, fontSize: 150, fontWeight: FontWeight.w900)),
),
),
if (_isPlanningMode)
Positioned(
bottom: 120, left: 60, right: 60,
child: Container(
padding: const EdgeInsets.all(15),
decoration: BoxDecoration(color: AppColors.coral.withOpacity(0.9), borderRadius: BorderRadius.circular(20)),
child: const Text(AppStrings.markDestination, textAlign: TextAlign.center, style: TextStyle(color: Colors.white, fontWeight: FontWeight.bold)),
),
),
],
),
floatingActionButton: FloatingActionButton.extended(
onPressed: _isRunning ? _finishRun : _showStartOptions,
label: Text(_isRunning ? AppStrings.btnStop : AppStrings.btnStartRun, style: const TextStyle(fontWeight: FontWeight.w900, letterSpacing: 1.5)),
icon: Icon(_isRunning ? Icons.stop_rounded : Icons.play_arrow_rounded, size: 32),
backgroundColor: _isRunning ? AppColors.coral : Colors.white,
foregroundColor: _isRunning ? Colors.white : AppColors.background,
elevation: 15,
),
floatingActionButtonLocation: FloatingActionButtonLocation.centerFloat,
);
}
Widget _buildOptionTile(IconData icon, String title, VoidCallback onTap) {
return ListTile(
leading: Container(padding: const EdgeInsets.all(8), decoration: BoxDecoration(color: Colors.white.withOpacity(0.05), shape: BoxShape.circle), child: Icon(icon, color: AppColors.coral)),
title: Text(title, style: const TextStyle(color: Colors.white, fontWeight: FontWeight.bold)),
trailing: const Icon(Icons.arrow_forward_ios_rounded, color: Colors.white24, size: 16),
onTap: onTap,
);
}
Widget _buildResultRow(String label, String value) {
return Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
Text(label, style: const TextStyle(color: Colors.white54, fontWeight: FontWeight.bold)),
Text(value, style: const TextStyle(color: Colors.white, fontSize: 18, fontWeight: FontWeight.w900)),
],
);
}
String _formatDistanceValue(double meters) {
if (meters < 1000) return meters.toStringAsFixed(0);
return (meters / 1000).toStringAsFixed(2);
}
String _formatTimeShort(int seconds) {
int mins = seconds ~/ 60;
int secs = seconds % 60;
return "${mins.toString().padLeft(2, '0')}:${secs.toString().padLeft(2, '0')}";
}
Widget _buildDivider() => Container(width: 1, height: 30, color: Colors.white10);
Widget _buildStat(String label, String value, String unit) {
return Column(mainAxisSize: MainAxisSize.min, children: [Text(label, style: const TextStyle(color: Colors.white54, fontSize: 10, fontWeight: FontWeight.w900, letterSpacing: 1.5)), const SizedBox(height: 6), Row(crossAxisAlignment: CrossAxisAlignment.baseline, textBaseline: TextBaseline.alphabetic, children: [Text(value, style: const TextStyle(color: Colors.white, fontSize: 26, fontWeight: FontWeight.w900)), const SizedBox(width: 3), Text(unit, style: const TextStyle(color: Colors.white54, fontSize: 10, fontWeight: FontWeight.bold))])]);
return Column(
mainAxisSize: MainAxisSize.min,
children: [
Text(label, style: const TextStyle(color: Colors.white54, fontSize: 9, fontWeight: FontWeight.w900, letterSpacing: 1)),
const SizedBox(height: 4),
Row(
crossAxisAlignment: CrossAxisAlignment.baseline,
textBaseline: TextBaseline.alphabetic,
children: [
Text(value, style: const TextStyle(color: Colors.white, fontSize: 22, fontWeight: FontWeight.w900)),
if (unit.isNotEmpty) ...[const SizedBox(width: 2), Text(unit, style: const TextStyle(color: Colors.white54, fontSize: 9, fontWeight: FontWeight.bold))],
],
),
],
);
}
}

View File

@@ -0,0 +1,497 @@
import 'package:flutter/material.dart';
import '../constants/app_colors.dart';
import '../constants/app_strings.dart';
import 'google_map_screen.dart';
import 'bluetooth_connection_screen.dart';
/// Tela principal que exibe o progresso, estatísticas e menu.
class RunningScreen extends StatefulWidget {
const RunningScreen({super.key});
@override
State<RunningScreen> createState() => _RunningScreenState();
}
class _RunningScreenState extends State<RunningScreen>
with SingleTickerProviderStateMixin {
// Variáveis de estado para controlar os dados da corrida.
double progress = 0.35; // Progresso inicial simulado para estética.
double targetDistance = 8.0; // Distância alvo em KM.
double currentDistance = 2.8; // Distância atual percorrida simulada.
/// Constrói o indicador de progresso circular central com melhorias estéticas.
Widget _buildCircularProgressIndicator() {
return SizedBox(
width: 210,
height: 210,
child: Stack(
alignment: Alignment.center,
children: [
// Efeito de brilho (glow) sutil atrás do progresso.
Container(
width: 180,
height: 180,
decoration: BoxDecoration(
shape: BoxShape.circle,
boxShadow: [
BoxShadow(
color: AppColors.white.withValues(alpha: 0.05),
blurRadius: 30,
spreadRadius: 10,
),
],
),
),
// TweenAnimationBuilder cria uma animação suave quando o valor do progresso muda.
TweenAnimationBuilder<double>(
tween: Tween(begin: 0.0, end: progress),
duration: const Duration(seconds: 1),
curve: Curves.easeInOut,
builder: (context, value, _) {
return CustomPaint(
size: const Size(210, 210),
painter: CircularProgressPainter(
progress: value,
strokeWidth: 14,
progressColor: AppColors.white,
backgroundColor: AppColors.white.withValues(alpha: 0.15),
),
);
},
),
// Círculo interno que contém o texto da porcentagem.
Container(
width: 175,
height: 175,
decoration: const BoxDecoration(
color: AppColors.backgroundGrey,
shape: BoxShape.circle,
),
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Text(
"${(progress * 100).toInt()}%",
style: const TextStyle(
fontSize: 42,
fontWeight: FontWeight.w900,
color: AppColors.white,
letterSpacing: -1,
),
),
Text(
AppStrings.complete,
style: TextStyle(
color: AppColors.white.withValues(alpha: 0.5),
fontSize: 11,
fontWeight: FontWeight.bold,
letterSpacing: 1.5,
),
),
],
),
),
],
),
);
}
@override
Widget build(BuildContext context) {
return Scaffold(
backgroundColor: AppColors.background, // Cor de fundo escura definida nas constantes.
body: Stack(
children: [
// 1. Indicador de progresso circular posicionado no topo central.
Align(
alignment: Alignment.topCenter,
child: Padding(
padding: const EdgeInsets.only(top: 70),
child: _buildCircularProgressIndicator(),
),
),
// 2. Exibição da distância estilizada como um badge.
Positioned(
top: 300,
left: 0,
right: 0,
child: Center(
child: Container(
padding: const EdgeInsets.symmetric(horizontal: 22, vertical: 10),
decoration: BoxDecoration(
color: AppColors.white.withValues(alpha: 0.08),
borderRadius: BorderRadius.circular(25),
border: Border.all(color: AppColors.white.withValues(alpha: 0.1)),
),
child: Text(
"${currentDistance.toStringAsFixed(1)} ${AppStrings.kmUnit} | ${targetDistance.toStringAsFixed(1)} ${AppStrings.kmUnit}",
style: const TextStyle(
color: AppColors.white,
fontSize: 15,
fontWeight: FontWeight.w800,
letterSpacing: 0.5,
),
),
),
),
),
// 3. Contêiner de estatísticas e o mapa interativo.
Positioned(
top: 360,
left: 20,
right: 20,
child: Container(
height: 210,
decoration: BoxDecoration(
color: AppColors.backgroundGrey,
borderRadius: BorderRadius.circular(30),
boxShadow: [
BoxShadow(
color: AppColors.black.withValues(alpha: 0.3),
blurRadius: 20,
offset: const Offset(0, 10),
),
],
),
child: Row(
children: [
// Lado Esquerdo: Estatísticas.
Expanded(
flex: 4,
child: Padding(
padding: const EdgeInsets.symmetric(vertical: 20, horizontal: 15),
child: Column(
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
children: [
_buildStatItem(Icons.directions_run_rounded, "3219", AppStrings.steps),
Divider(color: AppColors.white.withValues(alpha: 0.1), height: 1),
_buildStatItem(Icons.favorite_rounded, "98", AppStrings.bpm),
Divider(color: AppColors.white.withValues(alpha: 0.1), height: 1),
_buildStatItem(Icons.local_fire_department_rounded, "480", AppStrings.kcal),
],
),
),
),
// Lado Direito: Miniatura do Mapa Clicável.
Expanded(
flex: 6,
child: GestureDetector(
onTap: () {
Navigator.push(
context,
MaterialPageRoute(builder: (context) => const GoogleMapScreen()),
);
},
child: Container(
margin: const EdgeInsets.all(8),
child: ClipRRect(
borderRadius: BorderRadius.circular(22),
child: Stack(
children: [
Container(color: const Color(0xFF2C2C2E)),
CustomPaint(
size: Size.infinite,
painter: MapPainter(),
),
// Overlay estético indicando interatividade.
Container(
decoration: BoxDecoration(
gradient: LinearGradient(
begin: Alignment.topCenter,
end: Alignment.bottomCenter,
colors: [
AppColors.transparent,
AppColors.black.withValues(alpha: 0.4),
],
),
),
),
Positioned(
bottom: 12,
right: 12,
child: Container(
padding: const EdgeInsets.all(6),
decoration: BoxDecoration(
color: AppColors.background.withValues(alpha: 0.8),
shape: BoxShape.circle,
),
child: const Icon(Icons.fullscreen_rounded, color: AppColors.white, size: 20),
),
),
const Positioned(
top: 12,
left: 12,
child: Text(
AppStrings.mapPreview,
style: TextStyle(
color: AppColors.white,
fontSize: 10,
fontWeight: FontWeight.w900,
letterSpacing: 1,
),
),
),
],
),
),
),
),
),
],
),
),
),
// 4. Barra de progresso linear centralizada.
Positioned(
bottom: 170,
left: 50,
right: 50,
child: ClipRRect(
borderRadius: BorderRadius.circular(10),
child: LinearProgressIndicator(
value: progress,
minHeight: 8,
backgroundColor: AppColors.white.withValues(alpha: 0.1),
valueColor: const AlwaysStoppedAnimation<Color>(AppColors.white),
),
),
),
// 5. Menu de navegação inferior.
Positioned(
bottom: 50,
left: 0,
right: 0,
child: Row(
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
children: [
_buildMenuButton(Icons.settings_outlined, AppStrings.settings),
_buildMenuButton(Icons.group_outlined, AppStrings.groups),
_buildMenuButton(Icons.history_rounded, AppStrings.history),
_buildMenuButton(Icons.notifications_none_rounded, AppStrings.notifications, showBadge: true),
_buildMenuButton(Icons.person_outline_rounded, AppStrings.profile, isAvatar: true),
],
),
),
// 6. Ação rápida de Bluetooth.
Positioned(
top: 60,
right: 25,
child: _buildSmallActionButton(Icons.bluetooth, AppColors.error),
),
],
),
);
}
/// Item de estatística with design refinado.
Widget _buildStatItem(IconData icon, String value, String label) {
return Row(
children: [
Icon(icon, color: AppColors.coral.withValues(alpha: 0.8), size: 22),
const SizedBox(width: 12),
Column(
crossAxisAlignment: CrossAxisAlignment.start,
mainAxisSize: MainAxisSize.min,
children: [
Text(
value,
style: const TextStyle(
color: AppColors.white,
fontSize: 19,
fontWeight: FontWeight.w900,
),
),
Text(
label,
style: TextStyle(
color: AppColors.white.withValues(alpha: 0.4),
fontSize: 9,
fontWeight: FontWeight.bold,
letterSpacing: 0.5,
),
),
],
),
],
);
}
/// Botões do menu com melhorias visuais.
Widget _buildMenuButton(IconData icon, String message, {bool showBadge = false, bool isAvatar = false}) {
return GestureDetector(
onTap: () {
ScaffoldMessenger.of(context).showSnackBar(
SnackBar(
content: Text(message),
behavior: SnackBarBehavior.floating,
duration: const Duration(seconds: 1),
),
);
},
child: Stack(
clipBehavior: Clip.none,
children: [
isAvatar
? Container(
padding: const EdgeInsets.all(3),
decoration: BoxDecoration(
shape: BoxShape.circle,
border: Border.all(color: AppColors.coral, width: 2),
),
child: const CircleAvatar(
radius: 18,
backgroundImage: NetworkImage('https://i.pravatar.cc/150?u=1'),
),
)
: Container(
padding: const EdgeInsets.all(12),
decoration: BoxDecoration(
color: AppColors.backgroundGrey,
borderRadius: BorderRadius.circular(18),
border: Border.all(color: AppColors.white.withValues(alpha: 0.05)),
),
child: Icon(icon, color: AppColors.white.withValues(alpha: 0.9), size: 24),
),
if (showBadge)
Positioned(
right: -2,
top: -2,
child: Container(
width: 10,
height: 10,
decoration: BoxDecoration(
color: AppColors.coral,
shape: BoxShape.circle,
border: Border.all(color: AppColors.background, width: 2),
),
),
),
],
),
);
}
/// Botão de ação rápida (Bluetooth).
Widget _buildSmallActionButton(IconData icon, Color badgeColor) {
return GestureDetector(
onTap: () {
// Navegando para a nova tela de conexão Bluetooth
Navigator.push(
context,
MaterialPageRoute(builder: (context) => const BluetoothConnectionScreen()),
);
},
child: Container(
padding: const EdgeInsets.all(10),
decoration: BoxDecoration(
color: AppColors.backgroundGrey,
shape: BoxShape.circle,
border: Border.all(color: AppColors.white.withValues(alpha: 0.05)),
),
child: Stack(
children: [
Icon(icon, color: AppColors.white, size: 20),
Positioned(
right: 0,
top: 0,
child: Container(
width: 7,
height: 7,
decoration: BoxDecoration(
color: badgeColor,
shape: BoxShape.circle,
border: Border.all(color: AppColors.backgroundGrey, width: 1.5),
),
),
),
],
),
),
);
}
}
/// Pintor customizado para o mapa miniatura estético.
class MapPainter extends CustomPainter {
@override
void paint(Canvas canvas, Size size) {
final paintPath = Paint()
..color = AppColors.coral.withValues(alpha: 0.5)
..strokeWidth = 3
..style = PaintingStyle.stroke
..strokeCap = StrokeCap.round;
final path = Path();
path.moveTo(size.width * 0.1, size.height * 0.8);
path.quadraticBezierTo(size.width * 0.3, size.height * 0.9, size.width * 0.5, size.height * 0.5);
path.quadraticBezierTo(size.width * 0.7, size.height * 0.1, size.width * 0.9, size.height * 0.3);
final paintRoad = Paint()
..color = AppColors.white.withValues(alpha: 0.1)
..strokeWidth = 10
..style = PaintingStyle.stroke;
final road = Path();
road.moveTo(0, size.height * 0.5);
road.lineTo(size.width, size.height * 0.6);
canvas.drawPath(road, paintRoad);
canvas.drawPath(path, paintPath);
final markerPaint = Paint()..color = AppColors.coral;
canvas.drawCircle(Offset(size.width * 0.5, size.height * 0.5), 5, markerPaint);
canvas.drawCircle(Offset(size.width * 0.5, size.height * 0.5), 8, Paint()..color = AppColors.coral.withValues(alpha: 0.3));
}
@override
bool shouldRepaint(CustomPainter oldDelegate) => false;
}
/// Pintor customizado para o arco de progresso circular.
class CircularProgressPainter extends CustomPainter {
final double progress;
final double strokeWidth;
final Color progressColor;
final Color backgroundColor;
CircularProgressPainter({
required this.progress,
required this.strokeWidth,
required this.progressColor,
required this.backgroundColor,
});
@override
void paint(Canvas canvas, Size size) {
final center = Offset(size.width / 2, size.height / 2);
final radius = (size.width - strokeWidth) / 2;
canvas.drawCircle(center, radius, Paint()
..color = backgroundColor
..strokeWidth = strokeWidth
..style = PaintingStyle.stroke);
final progressPaint = Paint()
..color = progressColor
..strokeWidth = strokeWidth
..style = PaintingStyle.stroke
..strokeCap = StrokeCap.round;
canvas.drawArc(
Rect.fromCircle(center: center, radius: radius),
-1.5708, // -90 graus em radianos
6.2831 * progress, // 360 graus em radianos * progresso
false,
progressPaint,
);
}
@override
bool shouldRepaint(covariant CircularProgressPainter oldDelegate) =>
oldDelegate.progress != progress;
}

View File

@@ -0,0 +1,100 @@
import 'package:flutter/material.dart';
import '../constants/app_colors.dart';
import 'running_screen.dart';
class WelcomeScreen extends StatelessWidget {
const WelcomeScreen({super.key});
@override
Widget build(BuildContext context) {
return Scaffold(
backgroundColor: AppColors.background,
body: Container(
width: double.infinity,
decoration: BoxDecoration(
gradient: LinearGradient(
begin: Alignment.topCenter,
end: Alignment.bottomCenter,
colors: [
AppColors.coral.withValues(alpha: 0.1),
AppColors.background,
],
),
),
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
const Spacer(flex: 2),
// Logo or Icon
Container(
padding: const EdgeInsets.all(30),
decoration: BoxDecoration(
shape: BoxShape.circle,
color: AppColors.coral.withValues(alpha: 0.1),
border: Border.all(color: AppColors.coral, width: 2),
),
child: const Icon(
Icons.directions_run_rounded,
size: 80,
color: AppColors.coral,
),
),
const SizedBox(height: 40),
const Text(
'RUN VISION PRO',
style: TextStyle(
color: AppColors.white,
fontSize: 32,
fontWeight: FontWeight.w900,
letterSpacing: 4,
),
),
const SizedBox(height: 10),
Text(
'Sua jornada começa aqui',
style: TextStyle(
color: AppColors.white.withValues(alpha: 0.6),
fontSize: 16,
fontWeight: FontWeight.w300,
),
),
const Spacer(),
// Start Button
Padding(
padding: const EdgeInsets.symmetric(horizontal: 40),
child: SizedBox(
width: double.infinity,
height: 60,
child: ElevatedButton(
onPressed: () {
Navigator.pushReplacement(
context,
MaterialPageRoute(builder: (context) => const RunningScreen()),
);
},
style: ElevatedButton.styleFrom(
backgroundColor: AppColors.coral,
foregroundColor: AppColors.white,
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(30),
),
elevation: 0,
),
child: const Text(
'COMEÇAR',
style: TextStyle(
fontSize: 18,
fontWeight: FontWeight.bold,
letterSpacing: 2,
),
),
),
),
),
const SizedBox(height: 60),
],
),
),
);
}
}

View File

@@ -190,6 +190,14 @@ packages:
url: "https://pub.dev"
source: hosted
version: "2.0.33"
flutter_polyline_points:
dependency: "direct main"
description:
name: flutter_polyline_points
sha256: "3a1c8c30abee9fb0fbe44c70d5d1cedb10ef28ec7ea285c669f02b3e183483aa"
url: "https://pub.dev"
source: hosted
version: "2.1.0"
flutter_test:
dependency: "direct dev"
description: flutter
@@ -305,7 +313,7 @@ packages:
source: hosted
version: "0.15.6"
http:
dependency: transitive
dependency: "direct main"
description:
name: http
sha256: "87721a4a50b19c7f1d49001e51409bddc46303966ce89a65af4f4e6004896412"

View File

@@ -17,6 +17,8 @@ dependencies:
geolocator: ^10.1.0
flutter_blue_plus: ^1.31.0
permission_handler: ^11.3.1
flutter_polyline_points: ^2.1.0
http: ^1.1.0
dev_dependencies:
flutter_test: