mirror of
https://github.com/alibaba/flutter-go.git
synced 2025-07-08 02:04:43 +08:00
20 lines
693 B
Dart
20 lines
693 B
Dart
// Copyright 2017 The Chromium Authors. All rights reserved.
|
|
// 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_web/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
|
|
/// and is used by the platform-specific accessibility services.
|
|
library semantics;
|
|
|
|
export 'src/semantics/binding.dart';
|
|
export 'src/semantics/semantics.dart';
|
|
export 'src/semantics/debug.dart';
|
|
export 'src/semantics/semantics_service.dart';
|