mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00
fix typo and reflow (#140925)
Fixes "differenet" => "different" and reflows the doc to 80 char line length.
This commit is contained in:
parent
253dc6f847
commit
ae4fb0ca7c
@ -61,21 +61,23 @@ class PointerSignalResolver {
|
|||||||
|
|
||||||
/// Registers interest in handling [event].
|
/// Registers interest in handling [event].
|
||||||
///
|
///
|
||||||
/// This method may be called multiple times (typically from different parts of the
|
/// This method may be called multiple times (typically from different parts
|
||||||
/// widget hierarchy) for the same `event`, with differenet `callback`s, as the event
|
/// of the widget hierarchy) for the same `event`, with different `callback`s,
|
||||||
/// is being dispatched across the tree. Once the dispatching is complete, the
|
/// as the event is being dispatched across the tree. Once the dispatching is
|
||||||
/// [GestureBinding] calls [resolve], and the first registered callback is called.
|
/// complete, the [GestureBinding] calls [resolve], and the first registered
|
||||||
|
/// callback is called.
|
||||||
///
|
///
|
||||||
/// The `callback` is invoked with one argument, the `event`.
|
/// The `callback` is invoked with one argument, the `event`.
|
||||||
///
|
///
|
||||||
/// Once the [register] method has been called with a particular `event`, it must
|
/// Once the [register] method has been called with a particular `event`, it
|
||||||
/// not be called for other `event`s until after [resolve] has been called. Only one
|
/// must not be called for other `event`s until after [resolve] has been
|
||||||
/// event disambiguation can be in flight at a time. In normal use this is achieved
|
/// called. Only one event disambiguation can be in flight at a time. In
|
||||||
/// by only registering callbacks for an event as it is actively being dispatched
|
/// normal use this is achieved by only registering callbacks for an event as
|
||||||
/// (for example, in [Listener.onPointerSignal]).
|
/// it is actively being dispatched (for example, in
|
||||||
|
/// [Listener.onPointerSignal]).
|
||||||
///
|
///
|
||||||
/// See the documentation for the [PointerSignalResolver] class for an example of
|
/// See the documentation for the [PointerSignalResolver] class for an example
|
||||||
/// using this method.
|
/// of using this method.
|
||||||
void register(PointerSignalEvent event, PointerSignalResolvedCallback callback) {
|
void register(PointerSignalEvent event, PointerSignalResolvedCallback callback) {
|
||||||
assert(_currentEvent == null || _isSameEvent(_currentEvent!, event));
|
assert(_currentEvent == null || _isSameEvent(_currentEvent!, event));
|
||||||
if (_firstRegisteredCallback != null) {
|
if (_firstRegisteredCallback != null) {
|
||||||
|
Loading…
Reference in New Issue
Block a user