flutter app untuk unitstock
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 
 

13 строки
347 B

  1. import 'package:e2e/e2e.dart';
  2. import 'package:flutter_test/flutter_test.dart';
  3. import 'package:location/location.dart';
  4. void main() {
  5. E2EWidgetsFlutterBinding.ensureInitialized();
  6. testWidgets('Can instantiate Location object', (WidgetTester tester) async {
  7. final Location location = Location();
  8. expect(location, isNotNull);
  9. });
  10. }