chore: cleanup

This commit is contained in:
Nathan Walker
2023-03-25 17:13:00 -07:00
parent 039cd7342c
commit 4a53737d36
2 changed files with 2 additions and 3 deletions

View File

@@ -468,7 +468,6 @@ export class Page extends PageBase {
public onLoaded(): void {
super.onLoaded();
console.log('page loaded');
if (this.hasActionBar) {
this.actionBar.update();
}

View File

@@ -166,7 +166,7 @@ export class SharedTransitionHelper {
const startFrameRect = getRectFromProps(pageStartIndependentProps);
// adjust for any specified start positions
const startFrameAdjusted = CGRectMake(startFrame.origin.x + startFrameRect.x, startFrame.origin.y + startFrameRect.y, startFrame.size.width, startFrame.size.height);
console.log('startFrameAdjusted:', tag, iOSNativeHelper.printCGRect(startFrameAdjusted));
// console.log('startFrameAdjusted:', tag, iOSNativeHelper.printCGRect(startFrameAdjusted));
// if (pageStartIndependentProps?.scale) {
// snapshot.transform = CGAffineTransformConcat(CGAffineTransformMakeTranslation(startFrameAdjusted.origin.x, startFrameAdjusted.origin.y), CGAffineTransformMakeScale(pageStartIndependentProps.scale.x, pageStartIndependentProps.scale.y))
// } else {
@@ -179,7 +179,7 @@ export class SharedTransitionHelper {
const endFrameRect = getRectFromProps(pageEndIndependentProps);
const endFrame = CGRectMake(startFrame.origin.x + endFrameRect.x, startFrame.origin.y + endFrameRect.y, startFrame.size.width, startFrame.size.height);
console.log('endFrame:', tag, iOSNativeHelper.printCGRect(endFrame));
// console.log('endFrame:', tag, iOSNativeHelper.printCGRect(endFrame));
transition.sharedElements.independent.push({
view: independentView,
isPresented,