Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Commit c08e07f

Browse files
committed
format
1 parent fbcb797 commit c08e07f

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

shell/platform/darwin/ios/framework/Source/FlutterViewController.mm

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1523,21 +1523,21 @@ - (void)scrollEvent:(UIPanGestureRecognizer*)recognizer API_AVAILABLE(ios(13.4))
15231523
packet->SetPointerData(/*index=*/0, pointer_data);
15241524

15251525
[_engine.get() dispatchPointerDataPacket:std::move(packet)];
1526-
1526+
15271527
#pragma mark - State Restoration
15281528

1529-
- (void)encodeRestorableStateWithCoder:(NSCoder*)coder {
1530-
NSData* restorationData = [[_engine.get() restorationPlugin] restorationData];
1531-
[coder encodeDataObject:restorationData];
1532-
}
1529+
-(void)encodeRestorableStateWithCoder : (NSCoder*)coder {
1530+
NSData* restorationData = [[_engine.get() restorationPlugin] restorationData];
1531+
[coder encodeDataObject:restorationData];
1532+
}
15331533

1534-
- (void)decodeRestorableStateWithCoder:(NSCoder*)coder {
1535-
NSData* restorationData = [coder decodeDataObject];
1536-
[[_engine.get() restorationPlugin] setRestorationData:restorationData];
1537-
}
1534+
-(void)decodeRestorableStateWithCoder : (NSCoder*)coder {
1535+
NSData* restorationData = [coder decodeDataObject];
1536+
[[_engine.get() restorationPlugin] setRestorationData:restorationData];
1537+
}
15381538

1539-
- (FlutterRestorationPlugin*)restorationPlugin {
1540-
return [_engine.get() restorationPlugin];
1541-
}
1539+
-(FlutterRestorationPlugin*)restorationPlugin {
1540+
return [_engine.get() restorationPlugin];
1541+
}
15421542

1543-
@end
1543+
@end

0 commit comments

Comments
 (0)