Commit 0910a78f authored by Adam Barth's avatar Adam Barth

Improve dartdoc for SystemChrome and SystemSound (#3669)

We need to import these enums in order for the dartdoc to linkify correctly.

Fixes #3668
parent cd8f65df
...@@ -41,8 +41,8 @@ class PathProvider { ...@@ -41,8 +41,8 @@ class PathProvider {
/// ///
/// Examples: /// Examples:
/// ///
/// * iOS: `NSDocumentsDirectory` /// * _iOS_: `NSDocumentsDirectory`
/// * Android: The AppData directory. /// * _Android_: The AppData directory.
static Future<Directory> getApplicationDocumentsDirectory() async { static Future<Directory> getApplicationDocumentsDirectory() async {
return new Directory((await _pathProviderProxy.ptr.applicationDocumentsDirectory()).path); return new Directory((await _pathProviderProxy.ptr.applicationDocumentsDirectory()).path);
} }
......
...@@ -5,6 +5,7 @@ ...@@ -5,6 +5,7 @@
import 'dart:async'; import 'dart:async';
import 'package:sky_services/flutter/platform/system_chrome.mojom.dart' as mojom; import 'package:sky_services/flutter/platform/system_chrome.mojom.dart' as mojom;
import 'package:sky_services/flutter/platform/system_chrome.mojom.dart';
import 'shell.dart'; import 'shell.dart';
...@@ -27,7 +28,7 @@ class SystemChrome { ...@@ -27,7 +28,7 @@ class SystemChrome {
/// ///
/// Arguments: /// Arguments:
/// ///
/// * `device_orientation_mask`: A mask of `DeviceOrientation` enum values. /// * [deviceOrientationMask]: A mask of [DeviceOrientation] enum values.
/// The value 0 is synonymous with having all options enabled. /// The value 0 is synonymous with having all options enabled.
/// ///
/// Return Value: /// Return Value:
...@@ -44,7 +45,7 @@ class SystemChrome { ...@@ -44,7 +45,7 @@ class SystemChrome {
/// ///
/// Arguments: /// Arguments:
/// ///
/// * `style`: A mask of `SystemUIOverlay` enum values that denotes the overlays /// * [style]: A mask of [SystemUIOverlay] enum values that denotes the overlays
/// to show. /// to show.
/// ///
/// Return Value: /// Return Value:
......
...@@ -5,6 +5,7 @@ ...@@ -5,6 +5,7 @@
import 'dart:async'; import 'dart:async';
import 'package:sky_services/flutter/platform/system_sound.mojom.dart' as mojom; import 'package:sky_services/flutter/platform/system_sound.mojom.dart' as mojom;
import 'package:sky_services/flutter/platform/system_sound.mojom.dart' show SystemSoundType;
import 'shell.dart'; import 'shell.dart';
...@@ -31,7 +32,7 @@ class SystemSound { ...@@ -31,7 +32,7 @@ class SystemSound {
/// boolean indicating if the intent to play the specified sound was /// boolean indicating if the intent to play the specified sound was
/// successfully conveyed to the embedder. No sound may actually play if the /// successfully conveyed to the embedder. No sound may actually play if the
/// device is muted or the sound was not available on the platform. /// device is muted or the sound was not available on the platform.
static Future<bool> play(mojom.SystemSoundType type) async { static Future<bool> play(SystemSoundType type) async {
return (await _systemChromeProxy.ptr.play(type)).success; return (await _systemChromeProxy.ptr.play(type)).success;
} }
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment