-
-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(mobile): native_video_player (#12104)
* add native player library * splitup the player * stateful widget * refactor: native_video_player * fix: handle buffering * turn on volume when video plays * fix: aspect ratio * fix: handle remote asset orientation * refinements and fixes fix orientation for remote assets wip separate widget separate video loader widget fixed memory leak optimized seeking, cleanup debug context pop use global key back to one widget fixed rebuild wait for swipe animation to finish smooth hero animation for remote videos faster scroll animation * clean up logging * refactor aspect ratio calculation * removed unnecessary import * transitive dependencies * fixed referencing uninitialized orientation * use correct ref to build android * higher res placeholder for local videos * slightly lower delay * await things * fix controls when swiping between image and video * linting * extra smooth seeking, add comments * chore: generate router page * use current asset provider and loadAsset * fix stack handling * improved motion photo handling * use visibility for motion videos * error handling for async calls * fix duplicate key error * maybe fix duplicate key error * increase delay for hero animation * faster initialization for remote videos * ensure dimensions for memory cards * make aspect ratio logic reusable, optimizations * refactor: move exif search from aspect ratio to orientation * local orientation on ios is unreliable; prefer remote * fix no audio in silent mode on ios * increase bottom bar opacity to account for hdr * remove unused import * fix live photo play button not updating * fix map marker -> galleryviewer * remove video_player * fix hdr playback on android * fix looping * remove unused dependencies * update to latest player commit * fix player controls hiding when video is not playing * fix restart video * stop showing motion video after ending when looping is disabled * delay video initialization to avoid placeholder flicker * faster animation * shorter delay * small delay for image -> video on android * fix: lint * hide stacked children when controls are hidden, avoid bottom bar dropping --------- Co-authored-by: Alex <alex.tran1502@gmail.com> Co-authored-by: shenlong-tanwen <139912620+shalong-tanwen@users.noreply.github.com> Co-authored-by: mertalev <101130780+mertalev@users.noreply.github.com>
- Loading branch information
1 parent
5060ee9
commit 3c38851
Showing
44 changed files
with
1,621 additions
and
1,239 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,48 +1,59 @@ | ||
import UIKit | ||
import shared_preferences_foundation | ||
import Flutter | ||
import BackgroundTasks | ||
import Flutter | ||
import UIKit | ||
import path_provider_ios | ||
import photo_manager | ||
import permission_handler_apple | ||
import photo_manager | ||
import shared_preferences_foundation | ||
|
||
@main | ||
@objc class AppDelegate: FlutterAppDelegate { | ||
|
||
override func application( | ||
_ application: UIApplication, | ||
didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]? | ||
) -> Bool { | ||
|
||
// Required for flutter_local_notification | ||
if #available(iOS 10.0, *) { | ||
UNUserNotificationCenter.current().delegate = self as? UNUserNotificationCenterDelegate | ||
// Required for flutter_local_notification | ||
if #available(iOS 10.0, *) { | ||
UNUserNotificationCenter.current().delegate = self as? UNUserNotificationCenterDelegate | ||
} | ||
|
||
do { | ||
try AVAudioSession.sharedInstance().setCategory(.playback, mode: .default) | ||
try AVAudioSession.sharedInstance().setActive(true) | ||
} catch { | ||
print("Failed to set audio session category. Error: \(error)") | ||
} | ||
|
||
GeneratedPluginRegistrant.register(with: self) | ||
BackgroundServicePlugin.registerBackgroundProcessing() | ||
|
||
BackgroundServicePlugin.register(with: self.registrar(forPlugin: "BackgroundServicePlugin")!) | ||
|
||
BackgroundServicePlugin.setPluginRegistrantCallback { registry in | ||
if !registry.hasPlugin("org.cocoapods.path-provider-ios") { | ||
FLTPathProviderPlugin.register( | ||
with: registry.registrar(forPlugin: "org.cocoapods.path-provider-ios")!) | ||
} | ||
|
||
if !registry.hasPlugin("org.cocoapods.photo-manager") { | ||
PhotoManagerPlugin.register( | ||
with: registry.registrar(forPlugin: "org.cocoapods.photo-manager")!) | ||
} | ||
|
||
GeneratedPluginRegistrant.register(with: self) | ||
BackgroundServicePlugin.registerBackgroundProcessing() | ||
|
||
BackgroundServicePlugin.register(with: self.registrar(forPlugin: "BackgroundServicePlugin")!) | ||
|
||
BackgroundServicePlugin.setPluginRegistrantCallback { registry in | ||
if !registry.hasPlugin("org.cocoapods.path-provider-ios") { | ||
FLTPathProviderPlugin.register(with: registry.registrar(forPlugin: "org.cocoapods.path-provider-ios")!) | ||
} | ||
|
||
if !registry.hasPlugin("org.cocoapods.photo-manager") { | ||
PhotoManagerPlugin.register(with: registry.registrar(forPlugin: "org.cocoapods.photo-manager")!) | ||
} | ||
|
||
if !registry.hasPlugin("org.cocoapods.shared-preferences-foundation") { | ||
SharedPreferencesPlugin.register(with: registry.registrar(forPlugin: "org.cocoapods.shared-preferences-foundation")!) | ||
} | ||
|
||
if !registry.hasPlugin("org.cocoapods.permission-handler-apple") { | ||
PermissionHandlerPlugin.register(with: registry.registrar(forPlugin: "org.cocoapods.permission-handler-apple")!) | ||
} | ||
if !registry.hasPlugin("org.cocoapods.shared-preferences-foundation") { | ||
SharedPreferencesPlugin.register( | ||
with: registry.registrar(forPlugin: "org.cocoapods.shared-preferences-foundation")!) | ||
} | ||
|
||
return super.application(application, didFinishLaunchingWithOptions: launchOptions) | ||
|
||
if !registry.hasPlugin("org.cocoapods.permission-handler-apple") { | ||
PermissionHandlerPlugin.register( | ||
with: registry.registrar(forPlugin: "org.cocoapods.permission-handler-apple")!) | ||
} | ||
} | ||
|
||
return super.application(application, didFinishLaunchingWithOptions: launchOptions) | ||
} | ||
|
||
} |
This file contains 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
This file contains 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
Oops, something went wrong.