14 lines
308 B
Objective-C
14 lines
308 B
Objective-C
#import <LegacyComponents/TGBackdropView.h>
|
|
|
|
#import "LegacyComponentsInternal.h"
|
|
|
|
@implementation TGBackdropView
|
|
|
|
+ (TGBackdropView *)viewWithLightNavigationBarStyle
|
|
{
|
|
TGBackdropView *view = [[TGBackdropView alloc] init];
|
|
view.backgroundColor = UIColorRGBA(0xf7f7f7, 1.0f);
|
|
return view;
|
|
}
|
|
|
|
@end
|