mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
15 lines
291 B
Objective-C
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
|