This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #import "ViewController.h" | |
| #import <CoreImage/CoreImage.h> | |
| #import <AVFoundation/AVFoundation.h> | |
| @interface ViewController () { | |
| } | |
| @property (strong, nonatomic) CIContext *coreImageContext; | |
| @property (strong, nonatomic) AVCaptureSession *cameraSession; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import 'package:test/test.dart'; | |
| import 'package:intl/intl.dart'; | |
| import 'package:timezone/timezone.dart'; | |
| import 'package:timezone/data/latest.dart'; | |
| // A DateTime in dart contains the TimezoneOffset from UTC/GMT | |
| // This was modified to ommit the `:` so we actually have implemented the Z | |
| // Timezone formatter in dart. | |
| // | |
| // See: https://github.com/dart-lang/intl/issues/19 for more details. |
OlderNewer