Skip to content

Commit

Permalink
fix: resolve noted issues
Browse files Browse the repository at this point in the history
  • Loading branch information
sonle-geekyants committed Dec 29, 2023
1 parent 0f9e858 commit 5b69826
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 14 deletions.
6 changes: 4 additions & 2 deletions packages/at_backupkey_flutter/example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@ environment:

dependencies:
at_app_flutter: ^5.2.0
at_backupkey_flutter:
path: ../
at_client_mobile: ^3.2.12
at_onboarding_flutter: ^6.1.3
cupertino_icons: ^1.0.6
Expand All @@ -24,6 +22,10 @@ dependencies:
dev_dependencies:
flutter_lints: ^2.0.3

dependency_overrides:
at_backupkey_flutter:
path: ../

# For information on the generic Dart part of this file, see the
# following page: https://dart.dev/tools/pub/pubspec
# The following section is specific to Flutter.
Expand Down
1 change: 1 addition & 0 deletions packages/at_chat_flutter/example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ flutter:
uses-material-design: true

dev_dependencies:
flutter_lints: ^3.0.1
flutter_test:
sdk: flutter
# To add assets to your application, add an assets section, like this:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import 'package:at_follows_flutter/screens/connections.dart';
import 'package:at_follows_flutter_example/services/at_service.dart';
import 'package:at_follows_flutter_example/services/notification_service.dart';
import 'package:flutter/material.dart';
import 'package:at_utils/at_logger.dart';
import 'package:at_follows_flutter_example/utils/app_strings.dart';

class NextScreen extends StatefulWidget {
Expand Down
25 changes: 14 additions & 11 deletions packages/at_location_flutter/test/at_location_flutter_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -17,17 +17,20 @@ import 'package:mocktail/mocktail.dart';
import 'package:plugin_platform_interface/plugin_platform_interface.dart';

Position get mockPosition => Position(
latitude: 52.561270,
longitude: 5.639382,
timestamp: DateTime.fromMillisecondsSinceEpoch(
500,
isUtc: true,
),
altitude: 3000.0,
accuracy: 0.0,
heading: 0.0,
speed: 0.0,
speedAccuracy: 0.0);
latitude: 52.561270,
longitude: 5.639382,
timestamp: DateTime.fromMillisecondsSinceEpoch(
500,
isUtc: true,
),
altitude: 3000.0,
accuracy: 0.0,
heading: 0.0,
speed: 0.0,
speedAccuracy: 0.0,
altitudeAccuracy: 0.0,
headingAccuracy: 0.0,
);

class MockAtContactImpl extends Mock implements AtContactsImpl {}

Expand Down

0 comments on commit 5b69826

Please sign in to comment.