Skip to content

Commit cde560f

Browse files
committed
Update
1 parent d7a6a83 commit cde560f

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

flutter/lib/sentry_flutter.dart

+1
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,4 @@ export 'src/screenshot/sentry_screenshot_quality.dart';
1616
export 'src/user_interaction/sentry_user_interaction_widget.dart';
1717
export 'src/binding_wrapper.dart';
1818
export 'src/sentry_widget.dart';
19+
export 'src/navigation/sentry_display_widget.dart';

flutter/lib/src/navigation/sentry_navigator_observer.dart

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ import 'dart:async';
55
import 'package:flutter/material.dart';
66
import 'package:flutter/widgets.dart';
77
import 'package:meta/meta.dart';
8+
import 'time_to_display_tracker.dart';
89
import 'time_to_display_transaction_handler.dart';
910

1011
import '../../sentry_flutter.dart';
1112
import '../event_processor/flutter_enricher_event_processor.dart';
1213
import '../native/sentry_native.dart';
13-
import 'time_to_display_tracker.dart';
1414

1515
/// This key must be used so that the web interface displays the events nicely
1616
/// See https://develop.sentry.dev/sdk/event-payloads/breadcrumbs/
@@ -26,7 +26,7 @@ typedef AdditionalInfoExtractor = Map<String, dynamic>? Function(
2626
/// This is a navigation observer to record navigational breadcrumbs.
2727
/// For now it only records navigation events and no gestures.
2828
///
29-
/// It also records Time to Initial Display (TTID) and Time to Full Display (TTFD).
29+
/// It also records Time to Initial Display (TTID).
3030
///
3131
/// [Route]s can always be null and their [Route.settings] can also always be null.
3232
/// For example, if the application starts, there is no previous route.

0 commit comments

Comments
 (0)