Skip to content

Commit

Permalink
fixed missing Assets.m
Browse files Browse the repository at this point in the history
  • Loading branch information
mbender74 committed Jan 17, 2022
1 parent f7b27fd commit ceff848
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 2 deletions.
24 changes: 24 additions & 0 deletions ios/Classes/TiPopoverModuleAssets.m
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
/**
* This is a generated file. Do not edit or your changes will be lost
*/
#import "TiPopoverModuleAssets.h"

extern NSData* filterDataInRange(NSData* thedata, NSRange range);

@implementation TiPopoverModuleAssets

- (NSData *)moduleAsset
{


return nil;
}

- (NSData *)resolveModuleAsset:(NSString *)path
{


return nil;
}

@end
4 changes: 2 additions & 2 deletions ios/Classes/TiPopoverProxy.m
Original file line number Diff line number Diff line change
Expand Up @@ -558,15 +558,15 @@ - (void)updatePopoverNow
else {
if (animated){
if (popoverBlurEffectView != nil){
[UIView animateWithDuration:0.225 delay: 0.0 options: UIViewAnimationOptionCurveEaseIn
[UIView animateWithDuration:0.125 delay: 0.0 options: UIViewAnimationOptionCurveEaseIn
animations:^{
popoverBlurEffectView.alpha = 1.0;
}
completion:nil];
}
if (popoverDarkenBackgroundView != nil){

[UIView animateWithDuration:0.225 delay: 0.0 options: UIViewAnimationOptionCurveEaseIn
[UIView animateWithDuration:0.125 delay: 0.0 options: UIViewAnimationOptionCurveEaseIn
animations:^{
popoverDarkenBackgroundView.alpha = 1.0;
}
Expand Down
1 change: 1 addition & 0 deletions ios/metadata.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"exports":[]}
Binary file not shown.

0 comments on commit ceff848

Please sign in to comment.