Skip to content
This repository was archived by the owner on Nov 30, 2022. It is now read-only.

Commit 74e9481

Browse files
fix(ios): add safe areas where needed
* added safe area css to dialog, refresher and gallery
1 parent bd65c80 commit 74e9481

13 files changed

+157
-113
lines changed

Diff for: DisableBounce.m

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
//
2+
// DisableBounce.m
3+
// Fivethree
4+
//
5+
// Created by Gary Großgarten on 26.04.19.
6+
//
7+
8+
#import <Foundation/Foundation.h>
9+
#import <UIKit/UIKit.h>
10+
11+
@implementation UIScrollView (NoBounce)
12+
- (void)didMoveToWindow {
13+
[super didMoveToWindow];
14+
self.bounces = NO;
15+
}
16+
@end

0 commit comments

Comments
 (0)