semantics.dart 688 Bytes
Newer Older
Ian Hickson's avatar
Ian Hickson committed
1
// Copyright 2014 The Flutter Authors. All rights reserved.
2 3 4 5 6 7 8 9 10 11 12
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

/// The Flutter semantics package.
///
/// To use, import `package:flutter/semantics.dart`.
///
/// The [SemanticsEvent] classes define the protocol for sending semantic events
/// to the platform.
///
/// The [SemanticsNode] hierarchy represents the semantic structure of the UI
13
/// and is used by the platform-specific accessibility services.
14 15
library semantics;

16
export 'src/semantics/binding.dart';
17
export 'src/semantics/debug.dart';
18
export 'src/semantics/semantics.dart';
19
export 'src/semantics/semantics_service.dart';