fix(example): showing proper info for "streamed" intent
This commit is contained in:
parent
798c7cac03
commit
22e2efebe3
1 changed files with 3 additions and 3 deletions
|
@ -37,10 +37,10 @@ class _MyAppState extends State<MyApp> {
|
||||||
children: [
|
children: [
|
||||||
Text(label),
|
Text(label),
|
||||||
Text(
|
Text(
|
||||||
"fromPackage: ${intent?.fromPackageName}\nfromSignatures: ${_initialIntent?.fromSignatures}"),
|
"fromPackage: ${intent?.fromPackageName}\nfromSignatures: ${intent?.fromSignatures}"),
|
||||||
Text(
|
Text(
|
||||||
'action: ${_initialIntent?.action}\ndata: ${_initialIntent?.data}\ncategories: ${_initialIntent?.categories}'),
|
'action: ${intent?.action}\ndata: ${intent?.data}\ncategories: ${intent?.categories}'),
|
||||||
Text("extras: ${_initialIntent?.extra}")
|
Text("extras: ${intent?.extra}")
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in a new issue