1// Copyright 2014 The Flutter Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5/// The Flutter semantics package.
6///
7/// To use, import `package:flutter/semantics.dart`.
8///
9/// The [SemanticsEvent] classes define the protocol for sending semantic events
10/// to the platform.
11///
12/// The [SemanticsNode] hierarchy represents the semantic structure of the UI
13/// and is used by the platform-specific accessibility services.
14library semantics;
15
16export 'dart:ui' show LocaleStringAttribute, SpellOutStringAttribute;
17
18export 'src/semantics/binding.dart';
19export 'src/semantics/debug.dart';
20export 'src/semantics/semantics.dart';
21export 'src/semantics/semantics_event.dart';
22export 'src/semantics/semantics_service.dart';
23