docs: some API docs
This commit is contained in:
parent
dec10b2a83
commit
2b1a420fbd
2 changed files with 11 additions and 0 deletions
|
@ -7,7 +7,9 @@ void main() {
|
||||||
runApp(const MyApp());
|
runApp(const MyApp());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Example app widget for the plugin.
|
||||||
class MyApp extends StatefulWidget {
|
class MyApp extends StatefulWidget {
|
||||||
|
/// Constructor of MyApp widget.
|
||||||
const MyApp({Key key}) : super(key: key);
|
const MyApp({Key key}) : super(key: key);
|
||||||
|
|
||||||
@override
|
@override
|
||||||
|
|
|
@ -3,7 +3,16 @@ import 'dart:convert';
|
||||||
|
|
||||||
import 'package:flutter/services.dart';
|
import 'package:flutter/services.dart';
|
||||||
|
|
||||||
|
/// Result code indicating that operation succeeded.
|
||||||
|
///
|
||||||
|
/// Same as [`Activity.RESULT_OK`](https://developer.android.com/reference/android/app/Activity#RESULT_OK)
|
||||||
|
/// but for the Dart world.
|
||||||
const kActivityResultOk = -1;
|
const kActivityResultOk = -1;
|
||||||
|
|
||||||
|
/// Result code indicating that operation canceled.
|
||||||
|
///
|
||||||
|
/// Same as [`Activity.RESULT_CANCELED`](https://developer.android.com/reference/android/app/Activity#RESULT_CANCELED)
|
||||||
|
/// but for the Dart world.
|
||||||
const kActivityResultCanceled = 0;
|
const kActivityResultCanceled = 0;
|
||||||
|
|
||||||
class Intent {
|
class Intent {
|
||||||
|
|
Loading…
Reference in a new issue