mirror of
https://github.com/GitJournal/GitJournal.git
synced 2025-06-29 10:17:16 +08:00
Remove some logging
This commit is contained in:
@ -208,8 +208,8 @@ class _JournalAppState extends State<JournalApp> {
|
|||||||
// For sharing images coming from outside the app while the app is in the memory
|
// For sharing images coming from outside the app while the app is in the memory
|
||||||
_intentDataStreamSubscription = ReceiveSharingIntent.getMediaStream()
|
_intentDataStreamSubscription = ReceiveSharingIntent.getMediaStream()
|
||||||
.listen((List<SharedMediaFile> value) {
|
.listen((List<SharedMediaFile> value) {
|
||||||
Log.d("Received Share $value");
|
|
||||||
if (value == null) return;
|
if (value == null) return;
|
||||||
|
Log.d("Received Share $value");
|
||||||
|
|
||||||
setState(() {
|
setState(() {
|
||||||
_sharedImages = value.map((f) => f.path)?.toList();
|
_sharedImages = value.map((f) => f.path)?.toList();
|
||||||
@ -221,8 +221,8 @@ class _JournalAppState extends State<JournalApp> {
|
|||||||
|
|
||||||
// For sharing images coming from outside the app while the app is closed
|
// For sharing images coming from outside the app while the app is closed
|
||||||
ReceiveSharingIntent.getInitialMedia().then((List<SharedMediaFile> value) {
|
ReceiveSharingIntent.getInitialMedia().then((List<SharedMediaFile> value) {
|
||||||
Log.d("Received Share with App running $value");
|
|
||||||
if (value == null) return;
|
if (value == null) return;
|
||||||
|
Log.d("Received Share with App running $value");
|
||||||
|
|
||||||
setState(() {
|
setState(() {
|
||||||
_sharedImages = value.map((f) => f.path)?.toList();
|
_sharedImages = value.map((f) => f.path)?.toList();
|
||||||
|
Reference in New Issue
Block a user