| 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. |
| 14 | /// |
| 15 | /// @docImport 'src/semantics/semantics.dart'; |
| 16 | library semantics; |
| 17 | |
| 18 | export 'dart:ui' show LocaleStringAttribute, SpellOutStringAttribute; |
| 19 | |
| 20 | export 'src/semantics/binding.dart'; |
| 21 | export 'src/semantics/debug.dart'; |
| 22 | export 'src/semantics/semantics.dart'; |
| 23 | export 'src/semantics/semantics_event.dart'; |
| 24 | export 'src/semantics/semantics_service.dart'; |
| 25 | |