






#import "SugarScopeViewController.h"

@interface SugarScopeViewController ()

@end

@implementation SugarScopeViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    
    self.lenientMile.opaque = NO;
    self.view.backgroundColor = [UIColor.blackColor colorWithAlphaComponent:0];
    
    self.allowLowPen = self.lawBoldSeed;
}

- (void)viewWillAppear:(BOOL)animated {
    [super viewWillAppear:animated];
    UIEdgeInsets eyePenSame = [[LocationsManager shared] hasPeakThickWindow].safeAreaInsets;
    eyePenSame.top    += 10;
    eyePenSame.left   += 10;
    eyePenSame.bottom += 10;
    eyePenSame.right  += 10;

    [self.view mas_makeConstraints:^(MASConstraintMaker *make) {
        make.edges.mas_equalTo(0);
    }];
    
    [self.lenientMile mas_makeConstraints:^(MASConstraintMaker *make) {
        make.edges.mas_equalTo(0);
    }];
}

@end
