Swiftgram/LegacyComponents/TGBackdropView.m
2017-07-20 15:56:27 +03:00

15 lines
291 B
Objective-C

#import "TGBackdropView.h"
#import "LegacyComponentsInternal.h"
@implementation TGBackdropView
+ (TGBackdropView *)viewWithLightNavigationBarStyle
{
TGBackdropView *view = [[TGBackdropView alloc] init];
view.backgroundColor = UIColorRGBA(0xf7f7f7, 1.0f);
return view;
}
@end