blob: f71a8ae109e65f4ef25f43b8ca3c806a931af593 [file] [log] [blame]
// Copyright 2013 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#import "FFSFileSelectorPlugin.h"
#import "messages.g.h"
// This header is available in the Test module. Import via "@import file_selector_ios.Test;".
@interface FFSFileSelectorPlugin () <FFSFileSelectorApi, UIDocumentPickerDelegate>
/**
* Overrides the view controller used for presenting the document picker.
*/
@property(nonatomic) UIViewController *_Nullable presentingViewControllerOverride;
/**
* Overrides the UIDocumentPickerViewController used for file picking.
*/
@property(nonatomic) UIDocumentPickerViewController *_Nullable documentPickerViewControllerOverride;
@end