Zippy Rainbow
Zippy Rainbow
@aventez I don't believe the function to format a tag to NDEF exists in the code. Would need to be developed as an option.
If you use the once: false option that should do the job, but I found that by using a URI, you can use the background NFC function as well to...
Okay, I worked out the issue, I started back with the sample Core NFC code from Apple. For the iOS Multiscan to work (eg once:false, aka invalidateAfterFirstRead:false) you need to...
Hi @alrashidi7, I think this is a unknown issue in regards to nic_in_flutter which was identified in the ReadMe Doc. The phone locks up when the NFC is active in...
@adham-ashraf77 , See my[ Issue request (86)](https://github.com/semlette/nfc_in_flutter/issues/86) on MultiScaning on IOS. I found I needed to remove readerSession(_:didDetect:) to get the multiscan to work, then I can scan quickly. But...
@adham-ashraf77 I am a bit of a novice with GitHub, I tried to create a pull request but couldn't work out how to add one, it seemed like the option...
@adham-ashraf77 I assume you have read my Issue #86 I just removed the readerSession(_:didDetect:) subroutine from the nfc_in_flutter/ios/Classes/NfcInFlutterPlugin.m file, lines 470 to 507. Starting from. (void)readerSession:(NFCNDEFReaderSession *)session didDetectTags:(NSArray<__kindof id<NFCNDEFTag>> *)tags...
Hey @adham-ashraf77 Nothing needs adding. Just need to remove out lines 470 to 507 in nfc_in_flutter/ios/Classes/NfcInFlutterPlugin.m file. Once there is no "didDetectTags" function it will use the "didDetectNDEFs" function on...
@adham-ashraf77 Are you using the code something like this in flutter? With **once: false**? ``` _stream = NFC .readNDEF(alertMessage: "Scan your Card to record your time.", readerMode: NFCDispatchReaderMode(), throwOnUserCancel: false,...
> But it still times out every 60 seconds and needs 4 seconds to restart.. but I think that is just IOS. > it shows it open after 60 seconds...