






#import "MidWetShowViewController.h"

@interface MidWetShowViewController ()

@end

@implementation MidWetShowViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    
    self.overlapRows.opaque = NO;
    self.view.backgroundColor = [UIColor.blackColor colorWithAlphaComponent:0];
    
    self.gaspUnsaved = self.boldInfoTip;
}

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

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

@end
