mirror of
https://gitlab.com/nkming2/nc-photos.git
synced 2025-01-22 16:56:19 +01:00
14 lines
455 B
Dart
14 lines
455 B
Dart
// ignore_for_file: constant_identifier_names
|
|
|
|
/// Standard activity result: operation canceled.
|
|
const resultCanceled = 0;
|
|
|
|
/// Standard activity result: operation succeeded.
|
|
const resultOk = -1;
|
|
|
|
/// Start of user-defined activity results.
|
|
const resultFirstUser = 1;
|
|
|
|
const ACTION_GET_CONTENT = "android.intent.action.GET_CONTENT";
|
|
const CATEGORY_OPENABLE = "android.intent.category.OPENABLE";
|
|
const EXTRA_LOCAL_ONLY = "android.intent.extra.LOCAL_ONLY";
|