Load map places from backend
All checks were successful
Build and deploy Flutter Web / build (push) Successful in 3m26s

This commit is contained in:
Ruslan Bakiev
2026-05-08 15:54:15 +07:00
parent 4fb691135d
commit 238521b11b
10 changed files with 370 additions and 996 deletions

View File

@@ -1,4 +1,4 @@
import 'package:flutter/material.dart';
import 'package:flutter_map/flutter_map.dart';
import 'package:flutter_test/flutter_test.dart';
import 'package:flutter_riverpod/flutter_riverpod.dart';
@@ -9,8 +9,6 @@ void main() {
await tester.pumpWidget(const ProviderScope(child: MapflowApp()));
await tester.pump();
expect(find.text('выдохнуть'), findsOneWidget);
expect(find.text('свидание'), findsOneWidget);
expect(find.byIcon(Icons.add_location_alt_outlined), findsWidgets);
expect(find.byType(FlutterMap), findsOneWidget);
});
}