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

5 6
// @dart = 2.8

7 8 9 10 11 12 13 14
/// 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
15
/// and is used by the platform-specific accessibility services.
16 17
library semantics;

18
export 'src/semantics/binding.dart';
19
export 'src/semantics/debug.dart';
20
export 'src/semantics/semantics.dart';
21
export 'src/semantics/semantics_service.dart';